2014-06-15 17:00:28 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='reset can handle submodules'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
. "$TEST_DIRECTORY"/lib-submodule-update.sh
|
|
|
|
|
2017-04-21 17:39:53 +00:00
|
|
|
KNOWN_FAILURE_DIRECTORY_SUBMODULE_CONFLICTS=1
|
|
|
|
|
2017-05-26 19:10:11 +00:00
|
|
|
test_submodule_switch_recursing_with_args "reset --keep"
|
2017-04-21 17:39:53 +00:00
|
|
|
|
2017-05-26 19:10:11 +00:00
|
|
|
test_submodule_forced_switch_recursing_with_args "reset --hard"
|
2017-04-21 17:39:53 +00:00
|
|
|
|
2020-06-11 17:41:49 +00:00
|
|
|
test_submodule_switch "reset --keep"
|
2014-06-15 17:00:28 +00:00
|
|
|
|
2020-06-11 17:41:49 +00:00
|
|
|
test_submodule_switch "reset --merge"
|
2014-06-15 17:00:28 +00:00
|
|
|
|
2020-06-11 17:41:49 +00:00
|
|
|
test_submodule_forced_switch "reset --hard"
|
2014-06-15 17:00:28 +00:00
|
|
|
|
|
|
|
test_done
|