From a99d7003fe5de8f8c5b0048ba831aa248142d2c9 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 20 Mar 2014 00:15:24 +0000 Subject: [PATCH] Make test.sh output more readable --- test.sh | 2 ++ 1 file changed, 2 insertions(+) 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