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.
This commit is contained in:
Albert S. 2022-12-26 18:27:54 +01:00
parent 618f223491
commit 5cd0a36ced
1 changed files with 2 additions and 1 deletions

View File

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