From 4084475b204f5fe564eca19d445a1d4cd08ae73a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Torsten=20B=C3=B6gershausen?= Date: Mon, 21 Jan 2013 17:46:15 +0100 Subject: [PATCH] t0050: honor CASE_INSENSITIVE_FS in add (with different case) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The test case "add (with different case)" indicates a known breakage when run on a case insensitive file system. The test is invalid for case sensitive file system, it will always fail. Check the precondition CASE_INSENSITIVE_FS before running it. Signed-off-by: Torsten Bögershausen Signed-off-by: Junio C Hamano --- t/t0050-filesystem.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t0050-filesystem.sh b/t/t0050-filesystem.sh index ccd685dc14..a6fa3c5431 100755 --- a/t/t0050-filesystem.sh +++ b/t/t0050-filesystem.sh @@ -88,7 +88,7 @@ test_expect_success 'merge (case change)' ' -test_expect_failure 'add (with different case)' ' +test_expect_failure CASE_INSENSITIVE_FS 'add (with different case)' ' git reset --hard initial && rm camelcase && -- 2.11.4.GIT