summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4056afb)
raw | patch | inline | side by side (parent: 4056afb)
author | Junio C Hamano <gitster@pobox.com> | |
Mon, 27 Feb 2012 07:00:47 +0000 (23:00 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 27 Feb 2012 07:02:59 +0000 (23:02 -0800) |
This adds a test for the previous one to make sure that "am -3 -p0" can
read patches created with the --no-prefix option.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
read patches created with the --no-prefix option.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4150-am.sh | patch | blob | history |
diff --git a/t/t4150-am.sh b/t/t4150-am.sh
index d7d9ccc1c8c31ef3b2d4763532344d0637a18b5c..e1d381c43bedad287f4ff430c1b65756e1dc2c99 100755 (executable)
--- a/t/t4150-am.sh
+++ b/t/t4150-am.sh
git commit -m "added another file" &&
git format-patch --stdout master >lorem-move.patch &&
+ git format-patch --no-prefix --stdout master >lorem-zero.patch &&
git checkout -b rename &&
git mv file renamed &&
git diff --exit-code lorem
'
+test_expect_success 'am -3 -p0 can read --no-prefix patch' '
+ rm -fr .git/rebase-apply &&
+ git reset --hard &&
+ git checkout -b lorem3 master2 &&
+ sed -n -e "3,\$p" msg >file &&
+ head -n 9 msg >>file &&
+ git add file &&
+ test_tick &&
+ git commit -m "copied stuff" &&
+ git am -3 -p0 lorem-zero.patch &&
+ ! test -d .git/rebase-apply &&
+ git diff --exit-code lorem
+'
+
test_expect_success 'am can rename a file' '
grep "^rename from" rename.patch &&
rm -fr .git/rebase-apply &&