summaryrefslogtreecommitdiff
path: root/t/t3404-rebase-interactive.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-06-30 20:45:21 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-06-30 20:45:21 (GMT)
commit545222471004cc3fd53c54ff53d40a8bbc3dabe6 (patch)
tree69541daf226f975eaf8adeb42482da541b7c33c8 /t/t3404-rebase-interactive.sh
parente0aaa1b6532cfce93d87af9bc813fb2e7a7ce9d7 (diff)
parentadf16c08cb966be9c03e6f5b5b7614f617f81b95 (diff)
downloadgit-545222471004cc3fd53c54ff53d40a8bbc3dabe6.zip
git-545222471004cc3fd53c54ff53d40a8bbc3dabe6.tar.gz
git-545222471004cc3fd53c54ff53d40a8bbc3dabe6.tar.bz2
Merge branch 'pw/rebase-i-regression-fix-tests'
Fix a recent regression to "git rebase -i" and add tests that would have caught it and others. * pw/rebase-i-regression-fix-tests: t3420: fix under GETTEXT_POISON build rebase: add more regression tests for console output rebase: add regression tests for console output rebase -i: add test for reflog message sequencer: print autostash messages to stderr
Diffstat (limited to 't/t3404-rebase-interactive.sh')
-rwxr-xr-xt/t3404-rebase-interactive.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh
index 5bd0275..37821d2 100755
--- a/t/t3404-rebase-interactive.sh
+++ b/t/t3404-rebase-interactive.sh
@@ -169,6 +169,13 @@ test_expect_success 'reflog for the branch shows state before rebase' '
test $(git rev-parse branch1@{1}) = $(git rev-parse original-branch1)
'
+test_expect_success 'reflog for the branch shows correct finish message' '
+ printf "rebase -i (finish): refs/heads/branch1 onto %s\n" \
+ "$(git rev-parse branch2)" >expected &&
+ git log -g --pretty=%gs -1 refs/heads/branch1 >actual &&
+ test_cmp expected actual
+'
+
test_expect_success 'exchange two commits' '
set_fake_editor &&
FAKE_LINES="2 1" git rebase -i HEAD~2 &&