From: Martin Pool Date: Thu, 6 Sep 2001 13:12:28 +0000 (+0000) Subject: Debug exit status -- on Sun1/cc all the tests pass, but make sees an X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/d2476f0db3d3769eb23c9a4907d24e526cb61307 Debug exit status -- on Sun1/cc all the tests pass, but make sees an exit status of 1. ??? --- 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