Return the number of failed tests from make_tests

This commit is contained in:
olszomal 2021-09-07 11:45:34 +02:00 committed by Michał Trojnara
parent fb75eee385
commit 28f6ffbc42

View File

@ -19,15 +19,11 @@ make_tests() {
/bin/sh $plik 3>&1 2>> "results.log" 1>&2 /bin/sh $plik 3>&1 2>> "results.log" 1>&2
done done
count=$(grep -c "Test succeeded" "results.log") count=$(grep -c "Test succeeded" "results.log")
if test $count -ne 0 skip=$(grep -c "Test skipped" "results.log")
then fail=$(grep -c "Test failed" "results.log")
skip=$(grep -c "Test skipped" "results.log") printf "%s\n" "testall.sh finished"
fail=$(grep -c "Test failed" "results.log") printf "%s\n" "summary: success $count, skip $skip, fail $fail"
printf "%s\n" "testall.sh finished" return $fail
printf "%s\n" "summary: success $count, skip $skip, fail $fail"
else # no test was done
result=1
fi
} }
rm -rf "${result_path}" rm -rf "${result_path}"