Fix tests reporting in parallel execution (#1379)

* Fix tests reporting in parallel execution

Fix issue where parallel test execution was unable to track failed tests and inform about their number.

* Fix logic in tests.sh
pull/1380/head
Disconnect3d 3 years ago committed by GitHub
parent 64b0102939
commit f2ba99ec71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -111,9 +111,10 @@ run_test() {
PWNDBG_LAUNCH_TEST="${test_case}" \
PWNDBG_DISABLE_COLORS=1 \
run_gdb "${gdb_args[@]}"
retval=$?
if [ "$SERIAL" -ne 1 ]; then
exit $?
exit $retval
fi
}

Loading…
Cancel
Save