Case insensitive file handling is only activated by core.ignorecase = true. Hence, we need to set it to give the tests in t0050 a chance to succeed. Signed-off-by: Steffen Prohaska <prohaska@xxxxxx> --- t/t0050-filesystem.sh | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) On Sat, 22 Mar 2008, Linus Torvalds wrote: > - I made this all conditional on > > [core] > ignorecase = true > > because obviously I'm not at all interested in penalizing sane > filesystems. That said, I also worked at trying to make sure that it's > safe and possible to do this on a case-sensitive filesystem in case you > are working on a project that doesn't like case-sensitivity, so the > "git status" and "git add ." kind of operations won't add aliases With this commit applied test 2 of t0050 passes. This is the minimal change to make t0050 useful. Eventually test_expect_failure should be replaced with test_expect_success. Steffen diff --git a/t/t0050-filesystem.sh b/t/t0050-filesystem.sh index 3fbad77..cb109ff 100755 --- a/t/t0050-filesystem.sh +++ b/t/t0050-filesystem.sh @@ -34,6 +34,7 @@ test_expect_success 'see if we expect ' ' test_expect_success "setup case tests" ' + git config core.ignorecase true && touch camelcase && git add camelcase && git commit -m "initial" && -- 1.5.4.4.613.gaa46e5 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html