From 6b5f09b455beb9b6c04278d12c4ae144e346f454 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: May 11 2018 21:54:09 +0000 Subject: Output a summary line at the end of testing. --- diff --git a/runtests b/runtests index c1afb08..e415f3d 100755 --- a/runtests +++ b/runtests @@ -12,4 +12,9 @@ for i in test/*; do echo done done +if (( failed == 0 )); then + echo "All tests passed!" +else + echo "*** Test failures present." +fi exit $failed