]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - t/t6134-pathspec-in-submodule.sh
The ninth batch
[thirdparty/git.git] / t / t6134-pathspec-in-submodule.sh
... / ...
CommitLineData
1#!/bin/sh
2
3test_description='test case exclude pathspec'
4
5TEST_PASSES_SANITIZE_LEAK=true
6. ./test-lib.sh
7
8test_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
16'
17
18cat <<EOF >expect
19fatal: Pathspec 'sub/a' is in submodule 'sub'
20EOF
21
22test_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
28test_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
31'
32
33test_done