Git 2.45
[git/gitster.git] / t / t6134-pathspec-in-submodule.sh
blob16ce4cfcc6420477b2c86718f2e68834b843de61
1 #!/bin/sh
3 test_description='test case exclude pathspec'
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
8 test_expect_success 'setup a submodule' '
9 test_create_repo pretzel &&
10 : >pretzel/a &&
11 git -C pretzel add a &&
12 git -C pretzel commit -m "add a file" -- a &&
13 git -c protocol.file.allow=always submodule add ./pretzel sub &&
14 git commit -a -m "add submodule" &&
15 git submodule deinit --all
18 cat <<EOF >expect
19 fatal: Pathspec 'sub/a' is in submodule 'sub'
20 EOF
22 test_expect_success 'error message for path inside submodule' '
23 echo a >sub/a &&
24 test_must_fail git add sub/a 2>actual &&
25 test_cmp expect actual
28 test_expect_success 'error message for path inside submodule from within submodule' '
29 test_must_fail git -C sub add . 2>actual &&
30 test_grep "in unpopulated submodule" actual
33 test_done