summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Flynn <parseerror@gmail.com>2014-02-15 10:28:25 +0100
committerLloyd Hilaiel <lloyd@hilaiel.com>2014-02-15 10:32:58 +0100
commit612aba6edd5043fcd67ac169f22c9b8f753fbf68 (patch)
treeef716618c8f9707543d012bb6d208627284e931e
parenta0229579a661abd1e6ae86d5094cdcd7f0793d72 (diff)
downloadyajl-612aba6edd5043fcd67ac169f22c9b8f753fbf68.tar.gz
make output for new custom tests more similar to parsing test output
-rwxr-xr-xtest/api/run_tests.sh4
1 files 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