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.
Este commit está contenido en:
Albert S. 2022-12-26 18:27:54 +01:00
padre 618f223491
commit 5cd0a36ced
Se han modificado 1 ficheros con 2 adiciones y 1 borrados

Ver fichero

@ -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