diff options
author | Torsten Bögershausen <tboegi@web.de> | 2013-01-21 17:46:15 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-21 17:13:35 -0800 |
commit | 4084475b204f5fe564eca19d445a1d4cd08ae73a (patch) | |
tree | 65589707a1e2ca9ffde1a805d54a5e8748a4b900 | |
parent | t0050: known breakage vanished in merge (case change) (diff) | |
download | tgif-4084475b204f5fe564eca19d445a1d4cd08ae73a.tar.xz |
t0050: honor CASE_INSENSITIVE_FS in add (with different case)
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 <tboegi@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t0050-filesystem.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 && |