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