1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

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

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