From: Ævar Arnfjörð Bjarmason Date: Tue, 8 Nov 2022 14:10:35 +0000 (+0100) Subject: submodule tests: test for a "foreach" blind-spot X-Git-Tag: v2.39.0-rc0~18^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d50d8485ef03898a4f51fd99daa65217f2b713ae;p=thirdparty%2Fgit.git submodule tests: test for a "foreach" blind-spot We tested for "--" followed by command names, but not for "--" followed by an argument that looks like an option, let's do that. Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Taylor Blau --- diff --git a/t/t7407-submodule-foreach.sh b/t/t7407-submodule-foreach.sh index 59bd150166..8d7b234beb 100755 --- a/t/t7407-submodule-foreach.sh +++ b/t/t7407-submodule-foreach.sh @@ -154,6 +154,11 @@ test_expect_success 'use "submodule foreach" to checkout 2nd level submodule' ' ) ' +test_expect_success 'usage: foreach -- --not-an-option' ' + test_expect_code 1 git submodule foreach -- --not-an-option && + test_expect_code 1 git -C clone2 submodule foreach -- --not-an-option +' + test_expect_success 'use "foreach --recursive" to checkout all submodules' ' ( cd clone2 &&