Browse Source

Add a second testcase for handling invalid strategies in git-merge

This one tests '-s index' which is interesting because git-merge-index
is an existing git command but it is not a valid strategy.

Signed-off-by: Miklos Vajna <vmiklos@frugalware.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Miklos Vajna 17 years ago committed by Junio C Hamano
parent
commit
dce61e728b
  1. 4
      t/t7600-merge.sh

4
t/t7600-merge.sh

@ -230,6 +230,10 @@ test_expect_success 'test option parsing' ' @@ -230,6 +230,10 @@ test_expect_success 'test option parsing' '
test_must_fail git merge
'

test_expect_success 'reject non-strategy with a git-merge-foo name' '
test_must_fail git merge -s index c1
'

test_expect_success 'merge c0 with c1' '
git reset --hard c0 &&
git merge c1 &&

Loading…
Cancel
Save