]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t0050-*.sh: mark the rename (case change) test as passing
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>
Fri, 28 Nov 2014 16:57:18 +0000 (16:57 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 1 Dec 2014 02:13:42 +0000 (18:13 -0800)
Since commit baa37bff ("mv: allow renaming to fix case on case
insensitive filesystems", 08-05-2014), the 'git mv' command has
been able to rename a file, to one which differs only in case,
on a case insensitive filesystem.

This results in the 'rename (case change)' test, which used to fail
prior to this commit, to now (unexpectedly) pass. Mark this test as
passing.

[jc: Ramsay's tests on Cygwin, Eric's on Mac OS X]

Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Tested-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t0050-filesystem.sh

index 6b3cedcf24613b9c72c67b02c0b731db67055a26..988c3925d5e68be461b252675413671617e88809 100755 (executable)
@@ -64,7 +64,7 @@ test_expect_success "setup case tests" '
        git checkout -f master
 '
 
-$test_case 'rename (case change)' '
+test_expect_success 'rename (case change)' '
        git mv camelcase CamelCase &&
        git commit -m "rename"
 '