From b4a299d87ca7a1d39c699ee2af28305e57f3b0ae Mon Sep 17 00:00:00 2001 From: Steffen Prohaska Date: Sun, 11 May 2008 18:16:41 +0200 Subject: [PATCH] t0050: Set core.ignorecase case to activate case insensitivity 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 Signed-off-by: Junio C Hamano --- t/t0050-filesystem.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/t/t0050-filesystem.sh b/t/t0050-filesystem.sh index 66d3647bda..399b45df1f 100755 --- a/t/t0050-filesystem.sh +++ b/t/t0050-filesystem.sh @@ -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" && -- 2.11.4.GIT