From: Michał Kiedrowicz Date: Sat, 11 Apr 2009 15:26:24 +0000 (+0200) Subject: tests: test applying criss-cross rename patch X-Git-Tag: v1.6.3-rc1~7^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d8c81dfcaf3ac4bab0f0f8f54d2c4ae0425abcbf;p=git.git tests: test applying criss-cross rename patch Originally reported by Linus in $gmane/116198 Signed-off-by: Michał Kiedrowicz Signed-off-by: Junio C Hamano --- diff --git a/t/t4130-apply-criss-cross-rename.sh b/t/t4130-apply-criss-cross-rename.sh new file mode 100755 index 000000000..08c5f38b0 --- /dev/null +++ b/t/t4130-apply-criss-cross-rename.sh @@ -0,0 +1,38 @@ +#!/bin/sh + +test_description='git apply handling criss-cross rename patch.' +. ./test-lib.sh + +create_file() { + cnt=0 + while test $cnt -le 100 + do + cnt=$(($cnt + 1)) + echo "$2" >> "$1" + done +} + +test_expect_success 'setup' ' + create_file file1 "File1 contents" && + create_file file2 "File2 contents" && + git add file1 file2 && + git commit -m 1 +' + +test_expect_success 'criss-cross rename' ' + mv file1 tmp && + mv file2 file1 && + mv tmp file2 +' + +test_expect_success 'diff -M -B' ' + git diff -M -B > diff && + git reset --hard + +' + +test_expect_failure 'apply' ' + git apply diff +' + +test_done