Skip to content

Commit

Permalink
make output for new custom tests more similar to parsing test output
Browse files Browse the repository at this point in the history
  • Loading branch information
rflynn authored and lloyd committed Feb 15, 2014
1 parent a022957 commit 612aba6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/api/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -18,6 +18,6 @@ for file in `ls`; do
fi
done

echo "$passed/$tests passed"
echo "$passed/$tests tests successful"

exit 0

0 comments on commit 612aba6

Please sign in to comment.