Commit ec99e9da authored by Martin Pool's avatar Martin Pool

Clean up output a little.

parent e052b21f
...@@ -177,9 +177,9 @@ done ...@@ -177,9 +177,9 @@ done
echo '------------------------------------------------------------' echo '------------------------------------------------------------'
echo "----- overall results:" echo "----- overall results:"
echo " $passed passed" echo " $passed passed"
echo " $failed failed" [ "$failed" -gt 0 ] && echo " $failed failed"
echo " $skipped skipped" [ "$skipped" -gt 0 ] && echo " $skipped skipped"
echo " $missing missing" [ "$missing" -gt 0 ] && echo " $missing missing"
echo '------------------------------------------------------------' echo '------------------------------------------------------------'
exit `expr $failed + $missing` exit `expr $failed + $missing`
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment