From 612aba6edd5043fcd67ac169f22c9b8f753fbf68 Mon Sep 17 00:00:00 2001 From: Ryan Flynn Date: Sat, 15 Feb 2014 10:28:25 +0100 Subject: make output for new custom tests more similar to parsing test output --- test/api/run_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/api/run_tests.sh b/test/api/run_tests.sh index 19e8e17..6655152 100755 --- a/test/api/run_tests.sh +++ b/test/api/run_tests.sh @@ -8,7 +8,7 @@ passed=0 for file in `ls`; do [ ! -x $file -o -d $file ] && continue tests=`expr 1 + $tests` - printf " %s:\t" $file + printf " test(%s): " $file ./$file if [ $? ]; then passed=`expr 1 + $passed` @@ -18,6 +18,6 @@ for file in `ls`; do fi done -echo "$passed/$tests passed" +echo "$passed/$tests tests successful" exit 0 -- cgit v1.2.1