* [PATCH/RFC] t3404: test autosquash for fixup! commits with funny messages
@ 2014-03-14 23:58 Uwe Storbeck
0 siblings, 0 replies; only message in thread
From: Uwe Storbeck @ 2014-03-14 23:58 UTC (permalink / raw)
To: git
This commit adds a test to verify the correct behavior when
rebase -i is used to autosquash fixup! commits where the commit
message contains a backslash sequence (\n).
When echo is used instead of printf to handle such a commit
message the test will fail on shells (e.g. dash) where the echo
command interprets backslash sequences as control characters.
Signed-off-by: Uwe Storbeck <uwe@ibr.ch>
---
t/t3404-rebase-interactive.sh | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh
index 50e22b1..6d32661 100755
--- a/t/t3404-rebase-interactive.sh
+++ b/t/t3404-rebase-interactive.sh
@@ -798,6 +798,18 @@ test_expect_success 'rebase-i history with funny messages' '
test_cmp expect actual
'
+test_expect_success 'autosquash fixup! commits with funny messages' '
+ test_when_finished "git rebase --abort || :" &&
+ echo >>file1 &&
+ git commit -a -m "something that looks like a newline (\n)" &&
+ echo >>file1 &&
+ git commit -a --fixup HEAD &&
+ set_fake_editor &&
+ FAKE_LINES="" &&
+ export FAKE_LINES &&
+ git rebase -i --autosquash HEAD~2
+'
+
test_expect_success 'prepare for rebase -i --exec' '
git checkout master &&
--
1.9.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2014-03-14 23:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-14 23:58 [PATCH/RFC] t3404: test autosquash for fixup! commits with funny messages Uwe Storbeck
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).