]> Pileus Git - ~andy/git/commitdiff
t0050: Set core.ignorecase case to activate case insensitivity
authorSteffen Prohaska <prohaska@zib.de>
Sun, 11 May 2008 16:16:41 +0000 (18:16 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 11 May 2008 18:31:46 +0000 (11:31 -0700)
Case insensitive file handling is only active when
core.ignorecase = true.  Hence, we need to set it to give the tests
in t0050 a chance to succeed.  Setting core.ignorecase explicitly
allows to test some aspects of case handling even on case sensitive file
systems.

Signed-off-by: Steffen Prohaska <prohaska@zib.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t0050-filesystem.sh

index 66d3647bdad7a5bc0e9fb2d15bfa3909138b5501..399b45df1fdfd3d359152ecc2e87ee085dd6a358 100755 (executable)
@@ -50,6 +50,7 @@ fi
 
 test_expect_success "setup case tests" '
 
+       git config core.ignorecase true &&
        touch camelcase &&
        git add camelcase &&
        git commit -m "initial" &&