From d2476f0db3d3769eb23c9a4907d24e526cb61307 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Thu, 6 Sep 2001 13:12:28 +0000 Subject: [PATCH] Debug exit status -- on Sun1/cc all the tests pass, but make sees an exit status of 1. ??? --- runtests.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runtests.sh b/runtests.sh index 64ba3173..ff67838f 100755 --- a/runtests.sh +++ b/runtests.sh @@ -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 -- 2.34.1