File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
3
- test_description=' ls-tree with(out) wildcards '
3
+ test_description=' ls-tree with(out) globs '
4
4
5
5
. ./test-lib.sh
6
6
7
7
test_expect_success ' setup' '
8
- mkdir a aa "a* " &&
9
- touch a/one aa/two "a* /three" &&
10
- git add a/one aa/two "a* /three" &&
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
11
git commit -m test
12
12
'
13
13
14
- test_expect_success ' ls-tree a* matches literally' '
14
+ test_expect_success ' ls-tree a[a] matches literally' '
15
15
cat >expected <<EOF &&
16
- 100644 blob e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 a* /three
16
+ 100644 blob e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 a[a] /three
17
17
EOF
18
- git ls-tree -r HEAD "a* " >actual &&
18
+ git ls-tree -r HEAD "a[a] " >actual &&
19
19
test_cmp expected actual
20
20
'
21
21
You can’t perform that action at this time.
0 commit comments