test.sh: Fix regression causing status code to be lost

The changes in 01c5cbf701
did not take into account that "tee" would change the exit code.

Use a protable alternative to &>> now.
Cette révision appartient à :
Albert S. 2022-12-26 18:27:54 +01:00
Parent 618f223491
révision 5cd0a36ced
1 fichiers modifiés avec 2 ajouts et 1 suppressions

Voir le fichier

@ -52,7 +52,8 @@ runtest()
echo -n "Running $testname... "
#exit $? to suppress shell message like "./test.sh: line 18: pid Bad system call"
(./$testbin "$testname" || exit $?) 2>&1 | tee 1>/dev/null -a "${test_log_file}"
(./$testbin "$testname" || exit $?) >> "${test_log_file}" 2>&1
ret=$?
SUCCESS="no"
if [ $ret -eq 0 ] ; then