Commit d2476f0d authored by Martin Pool's avatar Martin Pool

Debug exit status -- on Sun1/cc all the tests pass, but make sees an

exit status of 1. ???
parent 952cf8f4
......@@ -203,4 +203,6 @@ echo " $passed passed"
[ "$missing" -gt 0 ] && echo " $missing missing"
echo '------------------------------------------------------------'
exit `expr $failed + $missing`
result=`expr $failed + $missing`
echo "(overall result is $result)"
exit $result
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