]>
Commit | Line | Data |
---|---|---|
48294e1d JL |
1 | #!/bin/sh |
2 | ||
3 | test_description='read-tree can handle submodules' | |
4 | ||
5 | . ./test-lib.sh | |
6 | . "$TEST_DIRECTORY"/lib-submodule-update.sh | |
7 | ||
25804914 SB |
8 | KNOWN_FAILURE_DIRECTORY_SUBMODULE_CONFLICTS=1 |
9 | KNOWN_FAILURE_SUBMODULE_OVERWRITE_IGNORED_UNTRACKED=1 | |
10 | ||
17f38cb7 | 11 | test_submodule_switch_recursing_with_args "read-tree -u -m" |
25804914 | 12 | |
17f38cb7 | 13 | test_submodule_forced_switch_recursing_with_args "read-tree -u --reset" |
25804914 | 14 | |
48294e1d JL |
15 | test_submodule_switch "git read-tree -u -m" |
16 | ||
17 | test_submodule_forced_switch "git read-tree -u --reset" | |
18 | ||
19 | test_done |