Browse Source

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>
maint
Torsten Bögershausen 12 years ago committed by Junio C Hamano
parent
commit
4084475b20
  1. 2
      t/t0050-filesystem.sh

2
t/t0050-filesystem.sh

@ -88,7 +88,7 @@ test_expect_success 'merge (case change)' ' @@ -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 &&

Loading…
Cancel
Save