From a306ce60c2bff5fea0593436773537cb08c0f624 Mon Sep 17 00:00:00 2001 From: Tomas Susanka Date: Wed, 31 Jan 2018 15:51:13 +0100 Subject: [PATCH] tests: small note at the end of output with the tests outcome --- tests/run_tests.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/run_tests.sh b/tests/run_tests.sh index dc506b71..66625bbb 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -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