git-svn: Teach dcommit --mergeinfo to handle multiple lines
[alt-git.git] / t / t3005-ls-files-relative.sh
bloba2b63e2c1066f1bf6b42086ea476bc02a1a556e6
1 #!/bin/sh
3 test_description='ls-files tests with relative paths
5 This test runs git ls-files with various relative path arguments.
8 . ./test-lib.sh
10 new_line='
12 sq=\'
14 test_expect_success 'prepare' '
15 : >never-mind-me &&
16 git add never-mind-me &&
17 mkdir top &&
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*
30 test_expect_success 'ls-files with mixed levels' '
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
42 test_expect_success 'ls-files -c' '
44 cd top/sub &&
45 for f in ../y*
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
56 test_expect_success 'ls-files -o' '
58 cd top/sub &&
59 for f in ../x*
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
70 test_done