diff --git a/test.sh b/test.sh index 1fa50af..656e3ac 100755 --- a/test.sh +++ b/test.sh @@ -24,9 +24,11 @@ testfiles="$(find "$testdir" -name "*-test.sh")" RET=0 for testfile in $testfiles; do + echo "" echo "running: ${testfile/#$(dirname "$testdir")\//}" cd "$(dirname "$testfile")" "$testfile" if [ "$?" != "0" ]; then RET=1; fi done +echo "" exit $RET