]> git.ipfire.org Git - thirdparty/git.git/blob - t/t6134-pathspec-in-submodule.sh
Merge branch 'jk/clone-allow-bare-and-o-together'
[thirdparty/git.git] / t / t6134-pathspec-in-submodule.sh
1 #!/bin/sh
2
3 test_description='test case exclude pathspec'
4
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
7
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 submodule add ./pretzel sub &&
14 git commit -a -m "add submodule" &&
15 git submodule deinit --all
16 '
17
18 cat <<EOF >expect
19 fatal: Pathspec 'sub/a' is in submodule 'sub'
20 EOF
21
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
26 '
27
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_i18ngrep "in unpopulated submodule" actual
31 '
32
33 test_done