summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2010-11-17 13:18:19 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2010-11-17 13:18:19 -0800
commit5d268edff8a271fe68f525e8d382a13b96c71a81 (patch)
tree58a610f4a1bed6d647c824617d6a95236f99999d /t
parentDocumentation/git-pull: clarify configuration (diff)
parentt3402: test "rebase -s<strategy> -X<opt>" (diff)
downloadtgif-5d268edff8a271fe68f525e8d382a13b96c71a81.tar.xz
Merge branch 'mz/maint-rebase-X-fix' into maint
* mz/maint-rebase-X-fix: t3402: test "rebase -s<strategy> -X<opt>"
Diffstat (limited to 't')
-rwxr-xr-xt/t3402-rebase-merge.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/t/t3402-rebase-merge.sh b/t/t3402-rebase-merge.sh
index 2bea65634a..be8c1d5ef9 100755
--- a/t/t3402-rebase-merge.sh
+++ b/t/t3402-rebase-merge.sh
@@ -117,4 +117,25 @@ test_expect_success 'picking rebase' '
esac
'
+test_expect_success 'rebase -s funny -Xopt' '
+ test_when_finished "rm -fr test-bin funny.was.run" &&
+ mkdir test-bin &&
+ cat >test-bin/git-merge-funny <<-EOF &&
+ #!$SHELL_PATH
+ case "\$1" in --opt) ;; *) exit 2 ;; esac
+ shift &&
+ >funny.was.run &&
+ exec git merge-recursive "\$@"
+ EOF
+ chmod +x test-bin/git-merge-funny &&
+ git reset --hard &&
+ git checkout -b test-funny master^ &&
+ test_commit funny &&
+ (
+ PATH=./test-bin:$PATH
+ git rebase -s funny -Xopt master
+ ) &&
+ test -f funny.was.run
+'
+
test_done