tests: let "run-nm-test.sh" fail with exit code 1 on failure

`git bisect run` is peculiar about the exit code:

  error: bisect run failed: exit code 134 from '...' is < 0 or >= 128

If we just "exec" the test, it usually will fail on an assert. That results
in SIGABRT or exit code 134. So out of the box that is annoying with
git-bisect.

Work around that and let the test wrapper always coerce any test failure
to exit code 1.
This commit is contained in:
Thomas Haller
2022-02-03 22:23:44 +01:00
parent a1abb3ebdf
commit f65747f6e9

View File

@@ -300,9 +300,10 @@ fi
if ! _is_true "$NMTST_USE_VALGRIND" 0; then if ! _is_true "$NMTST_USE_VALGRIND" 0; then
export NM_TEST_UNDER_VALGRIND=0 export NM_TEST_UNDER_VALGRIND=0
exec "${NMTST_DBUS_RUN_SESSION[@]}" \ "${NMTST_DBUS_RUN_SESSION[@]}" "$TEST" "${TEST_ARGV[@]}"
"$TEST" "${TEST_ARGV[@]}" r=$?
die "exec \"$TEST\" failed" [ $r == 0 ] || die "exec \"$TEST\" failed with exit code $r"
exit 0
fi fi
if [[ -z "${NMTST_VALGRIND}" ]]; then if [[ -z "${NMTST_VALGRIND}" ]]; then