tests: small note at the end of output with the tests outcome

This commit is contained in:
Tomas Susanka 2018-01-31 15:51:13 +01:00
parent 9c469d583a
commit a306ce60c2
1 changed files with 6 additions and 0 deletions

View File

@ -24,4 +24,10 @@ done
echo
echo 'Summary:'
printf '%s\n' "${results[@]}"
echo '-------------------'
if [ $error == 0 ]; then
echo 'ALL OK'
else
echo 'FAIL at least one error occurred'
fi
exit $error