diff --git a/test-ci.sh b/test-ci.sh index 2b464c4..12520e0 100755 --- a/test-ci.sh +++ b/test-ci.sh @@ -3,13 +3,17 @@ set -x cd "$(dirname "$(readlink -f "$0")")/tests" +let cnt=0 for i in *.sh; do - echo -e "\n>> Running test $i\n" + cnt=$(($cnt + 1)) + echo -e "\n>> Running test #$cnt \"$i\"\n" ./${i} retval=$? if [ $retval != 0 ]; then - echo "Failed $i with exit code $retval" + echo ">> FAILED test #$cnt \"$i\", exit code $retval" exit $retval fi done + +echo ">> All $cnt tests PASSED"