Skip to content

Commit 107dbe5

Browse files
committed
t3102: Windows filesystems may not use a literal asterisk in filenames.
Exclude these tests when using MINGW. Signed-off-by: Pat Thoyts <[email protected]>
1 parent 393d633 commit 107dbe5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

t/t3102-ls-tree-wildcards.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ test_description='ls-tree with(out) wildcards'
44

55
. ./test-lib.sh
66

7-
test_expect_success 'setup' '
7+
test_expect_success NOT_MINGW 'setup' '
88
mkdir a aa "a*" &&
99
touch a/one aa/two "a*/three" &&
1010
git add a/one aa/two "a*/three" &&
1111
git commit -m test
1212
'
1313

14-
test_expect_success 'ls-tree a* matches literally' '
14+
test_expect_success NOT_MINGW 'ls-tree a* matches literally' '
1515
cat >expected <<EOF &&
1616
100644 blob e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 a*/three
1717
EOF

0 commit comments

Comments
 (0)