summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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