Commit a426e396 authored by Martin Pool's avatar Martin Pool

Return 1 if any tests failed so that the build farm can pick it up.

parent fafeb69c
......@@ -90,3 +90,10 @@ echo " $failed failed"
echo " $skipped skipped"
echo " $missing missing"
echo '------------------------------------------------------------'
if test $failed -gt 0
then
exit 1
else
exit 0
fi
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