Skip to content

Commit db6a6ad

Browse files
mark987gitster
authored andcommitted
t6131 - skip tests if on case-insensitive file system
This test fails on Cygwin where the default system configuration does not support case sensitivity (only case retention), so don't run the test on such systems. Signed-off-by: Mark Levedahl <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 93d9353 commit db6a6ad

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

t/t6131-pathspec-icase.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
test_description='test case insensitive pathspec limiting'
44
. ./test-lib.sh
55

6+
if test_have_prereq CASE_INSENSITIVE_FS
7+
then
8+
skip_all='skipping case sensitive tests - case insensitive file system'
9+
test_done
10+
fi
11+
612
test_expect_success 'create commits with glob characters' '
713
test_commit bar bar &&
814
test_commit bAr bAr &&

0 commit comments

Comments
 (0)