rev-parse test: use test_must_fail, not "if <command>; then false; fi"

This way, if rev-parse segfaults then the test will fail instead
of treating it the same way as a controlled failure.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Felipe Contreras 2013-09-03 10:06:18 -07:00 коммит произвёл Junio C Hamano
Родитель dfb1dc5c33
Коммит d8f7681337
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -26,7 +26,7 @@ test_expect_success 'start^0' '
' '
test_expect_success 'start^1 not valid' ' test_expect_success 'start^1 not valid' '
if git rev-parse --verify start^1; then false; else :; fi test_must_fail git rev-parse --verify start^1
' '
test_expect_success 'second^1 = second^' ' test_expect_success 'second^1 = second^' '
@ -50,7 +50,7 @@ test_expect_success 'final^1^2 != final^1^1' '
' '
test_expect_success 'final^1^3 not valid' ' test_expect_success 'final^1^3 not valid' '
if git rev-parse --verify final^1^3; then false; else :; fi test_must_fail git rev-parse --verify final^1^3
' '
test_expect_success '--verify start2^1' ' test_expect_success '--verify start2^1' '