Code

Merge branch 'ic/maint-rebase-i-abort'
[git.git] / t / t3404-rebase-interactive.sh
index 8d409156d24a11355c2fa124989527b69a683c53..ee9a1b25e6a35adcb2350068d3b63b50bc9c24b3 100755 (executable)
@@ -191,6 +191,12 @@ test_expect_success '-p handles "no changes" gracefully' '
        test $HEAD = $(git rev-parse HEAD)
 '
 
+test_expect_failure 'exchange two commits with -p' '
+       FAKE_LINES="2 1" git rebase -i -p HEAD~2 &&
+       test H = $(git cat-file commit HEAD^ | sed -ne \$p) &&
+       test G = $(git cat-file commit HEAD | sed -ne \$p)
+'
+
 test_expect_success 'preserve merges with -p' '
        git checkout -b to-be-preserved master^ &&
        : > unrelated-file &&