Code

Merge branch 'maint'
[git.git] / t / t3005-ls-files-relative.sh
1 #!/bin/sh
3 test_description='ls-files tests with relative paths
5 This test runs git ls-files with various relative path arguments.
6 '
8 . ./test-lib.sh
10 new_line='
11 '
12 sq=\'
14 test_expect_success 'prepare' '
15         : >never-mind-me &&
16         git add never-mind-me &&
17         mkdir top &&
18         (
19                 cd top &&
20                 mkdir sub &&
21                 x="x xa xbc xdef xghij xklmno" &&
22                 y=$(echo "$x" | tr x y) &&
23                 touch $x &&
24                 touch $y &&
25                 cd sub &&
26                 git add ../x*
27         )
28 '
30 test_expect_success 'ls-files with mixed levels' '
31         (
32                 cd top/sub &&
33                 cat >expect <<-EOF &&
34                 ../../never-mind-me
35                 ../x
36                 EOF
37                 git ls-files $(cat expect) >actual &&
38                 test_cmp expect actual
39         )
40 '
42 test_expect_success 'ls-files -c' '
43         (
44                 cd top/sub &&
45                 for f in ../y*
46                 do
47                         echo "error: pathspec $sq$f$sq did not match any file(s) known to git."
48                 done >expect &&
49                 echo "Did you forget to ${sq}git add${sq}?" >>expect &&
50                 ls ../x* >>expect &&
51                 test_must_fail git ls-files -c --error-unmatch ../[xy]* >actual 2>&1 &&
52                 test_cmp expect actual
53         )
54 '
56 test_expect_success 'ls-files -o' '
57         (
58                 cd top/sub &&
59                 for f in ../x*
60                 do
61                         echo "error: pathspec $sq$f$sq did not match any file(s) known to git."
62                 done >expect &&
63                 echo "Did you forget to ${sq}git add${sq}?" >>expect &&
64                 ls ../y* >>expect &&
65                 test_must_fail git ls-files -o --error-unmatch ../[xy]* >actual 2>&1 &&
66                 test_cmp expect actual
67         )
68 '
70 test_done