diff options
author | Steffen Prohaska <prohaska@zib.de> | 2008-05-11 18:16:41 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-05-11 11:31:46 -0700 |
commit | b4a299d87ca7a1d39c699ee2af28305e57f3b0ae (patch) | |
tree | 137bea47ef01f5afd23ddef2222395e1939a975c /t | |
parent | 1c51c7d7d97acb447050a820dc39d242dc29c5df (diff) | |
download | git-b4a299d87ca7a1d39c699ee2af28305e57f3b0ae.tar.gz git-b4a299d87ca7a1d39c699ee2af28305e57f3b0ae.tar.xz |
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 <prohaska@zib.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t0050-filesystem.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/t0050-filesystem.sh b/t/t0050-filesystem.sh index 66d3647bd..399b45df1 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" && |