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

This commit is contained in:
Martin Pool
2001-08-21 14:06:52 +00:00
parent fafeb69cb6
commit a426e396c4

View File

@@ -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