diff options
author | Lars Schneider <larsxschneider@gmail.com> | 2015-10-12 10:03:04 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-12 10:36:54 -0700 |
commit | eb8e364969098e92743024dca170d1db3536a978 (patch) | |
tree | 83f2e4206f947184cbdeb3b9df0cecab64326985 | |
parent | 3a692b3c87e5433ab0a98f1307486c9956408e30 (diff) | |
download | git-ls/p4-test-updates.tar.gz |
git-p4: skip t9819 test case on case insensitive file systemsls/p4-test-updates
Windows and OS X file systems are case insensitive by default.
Consequently the "git-p4-case-folding" test case does not apply to
them.
Signed-off-by: Lars Schneider <larsxschneider@gmail.com>
Acked-by: Luke Diamand <luke@diamand.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t9819-git-p4-case-folding.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/t/t9819-git-p4-case-folding.sh b/t/t9819-git-p4-case-folding.sh index 78f1d0f92d..d808c008c1 100755 --- a/t/t9819-git-p4-case-folding.sh +++ b/t/t9819-git-p4-case-folding.sh @@ -4,6 +4,12 @@ test_description='interaction with P4 case-folding' . ./lib-git-p4.sh +if test_have_prereq CASE_INSENSITIVE_FS +then + skip_all='skipping P4 case-folding tests; case insensitive file system detected' + test_done +fi + test_expect_success 'start p4d with case folding enabled' ' start_p4d -C1 ' |