test_must_fail: 129 is a valid error code from usage()

When a git command is run under test_must_fail to make sure that
the argument parser catches bogus command line, it exits with 129.
We need to catch it as a valid "graceful error exit".

Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Junio C Hamano 2008-03-24 23:07:08 -07:00
parent 5b67b8e2d4
commit 8ee002fd3d
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ test_expect_code () {

test_must_fail () {
"$@"
test $? -gt 0 -a $? -le 128
test $? -gt 0 -a $? -le 129
}

# test_cmp is a helper function to compare actual and expected output.