# HG changeset patch # User Ralf Wildenhues # Date 1276275813 -7200 # Node ID e1905a9a836ae9267375f626906eba2b9737f70f # Parent 3fd42e89759e77cf4669d007c8eb83e7dae6a6ea init.sh: change framework_failure_ to fail with status 99, not 1 * tests/init.sh (framework_failure_): Exit 99, not 1. This informs automake's parallel-tests rule that this is an unexpected failure, even if the test is listed in XFAIL_TESTS. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2010-06-11 Ralf Wildenhues + + init.sh: change framework_failure_ to fail with status 99, not 1 + * tests/init.sh (framework_failure_): Exit 99, not 1. This informs + automake's parallel-tests rule that this is an unexpected failure, + even if the test is listed in XFAIL_TESTS. + 2010-06-11 Jim Meyering test-inttostr: avoid warnings about 4-6KB literal strings diff --git a/tests/init.sh b/tests/init.sh --- a/tests/init.sh +++ b/tests/init.sh @@ -77,7 +77,7 @@ warn_() { echo "$@" 1>&$stderr_fileno_; } fail_() { warn_ "$ME_: failed test: $@"; Exit 1; } skip_() { warn_ "$ME_: skipped test: $@"; Exit 77; } -framework_failure_() { warn_ "$ME_: set-up failure: $@"; Exit 1; } +framework_failure_() { warn_ "$ME_: set-up failure: $@"; Exit 99; } # We require $(...) support unconditionally. # We require a few additional shell features only when $EXEEXT is nonempty,