t7600-merge: Use test_expect_failure to test option parsing
It used plain 'if git merge ...', which hides a segfault. The test does not pass. Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
f66cf96d7c
commit
01941bd543
@ -222,36 +222,12 @@ test_expect_success 'setup' '
|
|||||||
test_debug 'gitk --all'
|
test_debug 'gitk --all'
|
||||||
|
|
||||||
test_expect_success 'test option parsing' '
|
test_expect_success 'test option parsing' '
|
||||||
if git merge -$ c1
|
test_must_fail git merge -$ c1 &&
|
||||||
then
|
test_must_fail git merge --no-such c1 &&
|
||||||
echo "[OOPS] -$ accepted"
|
test_must_fail git merge -s foobar c1 &&
|
||||||
false
|
test_must_fail git merge -s=foobar c1 &&
|
||||||
fi &&
|
test_must_fail git merge -m &&
|
||||||
if git merge --no-such c1
|
test_must_fail git merge
|
||||||
then
|
|
||||||
echo "[OOPS] --no-such accepted"
|
|
||||||
false
|
|
||||||
fi &&
|
|
||||||
if git merge -s foobar c1
|
|
||||||
then
|
|
||||||
echo "[OOPS] -s foobar accepted"
|
|
||||||
false
|
|
||||||
fi &&
|
|
||||||
if git merge -s=foobar c1
|
|
||||||
then
|
|
||||||
echo "[OOPS] -s=foobar accepted"
|
|
||||||
false
|
|
||||||
fi &&
|
|
||||||
if git merge -m
|
|
||||||
then
|
|
||||||
echo "[OOPS] missing commit msg accepted"
|
|
||||||
false
|
|
||||||
fi &&
|
|
||||||
if git merge
|
|
||||||
then
|
|
||||||
echo "[OOPS] missing commit references accepted"
|
|
||||||
false
|
|
||||||
fi
|
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'merge c0 with c1' '
|
test_expect_success 'merge c0 with c1' '
|
||||||
|
Loading…
Reference in New Issue
Block a user