t3102: Windows filesystems may not use a literal asterisk in filenames.
[git/dscho.git] / t / t3102-ls-tree-wildcards.sh
blob766af3de9bca1529a4f1c91b5df415e13a09ed8c
1 #!/bin/sh
3 test_description='ls-tree with(out) globs'
5 . ./test-lib.sh
7 test_expect_success NOT_MINGW 'setup' '
8 mkdir a aa "a[a]" &&
9 touch a/one aa/two "a[a]/three" &&
10 git add a/one aa/two "a[a]/three" &&
11 git commit -m test
14 test_expect_success NOT_MINGW 'ls-tree a* matches literally' '
15 cat >expected <<EOF &&
16 100644 blob e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 a[a]/three
17 EOF
18 git ls-tree -r HEAD "a[a]" >actual &&
19 test_cmp expected actual
22 test_done