summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>2014-11-28 16:57:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-12-01 02:13:42 (GMT)
commitdecd3c0c28906cd53072ae534e0e23b4e7879371 (patch)
tree1ffa9a977055d54388aa45b2c5af56cfa7a3159d
parentbaa37bff9a845471754d3f47957d58a6ccc30058 (diff)
downloadgit-decd3c0c28906cd53072ae534e0e23b4e7879371.zip
git-decd3c0c28906cd53072ae534e0e23b4e7879371.tar.gz
git-decd3c0c28906cd53072ae534e0e23b4e7879371.tar.bz2
t0050-*.sh: mark the rename (case change) test as passing
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>
-rwxr-xr-xt/t0050-filesystem.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0050-filesystem.sh b/t/t0050-filesystem.sh
index 6b3cedc..988c392 100755
--- a/t/t0050-filesystem.sh
+++ b/t/t0050-filesystem.sh
@@ -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"
'