From: Mark Levedahl Date: Wed, 17 Jul 2013 13:22:16 +0000 (-0400) Subject: t6131 - skip tests if on case-insensitive file system X-Git-Tag: v1.8.5-rc0~158^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=db6a6adabfb57d8a4dcd0491a7b7e2168dac60c1;p=thirdparty%2Fgit.git 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 Signed-off-by: Junio C Hamano --- diff --git a/t/t6131-pathspec-icase.sh b/t/t6131-pathspec-icase.sh index 3215eef525..8d4a7fcb91 100755 --- a/t/t6131-pathspec-icase.sh +++ b/t/t6131-pathspec-icase.sh @@ -3,6 +3,12 @@ test_description='test case insensitive pathspec limiting' . ./test-lib.sh +if test_have_prereq CASE_INSENSITIVE_FS +then + skip_all='skipping case sensitive tests - case insensitive file system' + test_done +fi + test_expect_success 'create commits with glob characters' ' test_commit bar bar && test_commit bAr bAr &&