]> git.ipfire.org Git - thirdparty/git.git/blob - t/t6136-pathspec-in-bare.sh
The third batch
[thirdparty/git.git] / t / t6136-pathspec-in-bare.sh
1 #!/bin/sh
2
3 test_description='diagnosing out-of-scope pathspec'
4
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
7
8 test_expect_success 'setup a bare and non-bare repository' '
9 test_commit file1 &&
10 git clone --bare . bare
11 '
12
13 test_expect_success 'log and ls-files in a bare repository' '
14 (
15 cd bare &&
16 test_must_fail git log -- .. >out 2>err &&
17 test_must_be_empty out &&
18 test_grep "outside repository" err &&
19
20 test_must_fail git ls-files -- .. >out 2>err &&
21 test_must_be_empty out &&
22 test_grep "outside repository" err
23 )
24 '
25
26 test_expect_success 'log and ls-files in .git directory' '
27 (
28 cd .git &&
29 test_must_fail git log -- .. >out 2>err &&
30 test_must_be_empty out &&
31 test_grep "outside repository" err &&
32
33 test_must_fail git ls-files -- .. >out 2>err &&
34 test_must_be_empty out &&
35 test_grep "outside repository" err
36 )
37 '
38
39 test_done