aboutsummaryrefslogtreecommitdiffstats
path: root/runtests.sh
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2001-09-06 13:12:28 +0000
committerMartin Pool <mbp@samba.org>2001-09-06 13:12:28 +0000
commitd2476f0db3d3769eb23c9a4907d24e526cb61307 (patch)
tree34fdc528d62bfaffd39eccce6b4239bb45a15909 /runtests.sh
parent952cf8f4f34feba3d40f2cda90d2453f70aa2b3a (diff)
downloadandroid_external_rsync-d2476f0db3d3769eb23c9a4907d24e526cb61307.tar.gz
android_external_rsync-d2476f0db3d3769eb23c9a4907d24e526cb61307.tar.bz2
android_external_rsync-d2476f0db3d3769eb23c9a4907d24e526cb61307.zip
Debug exit status -- on Sun1/cc all the tests pass, but make sees an
exit status of 1. ???
Diffstat (limited to 'runtests.sh')
-rwxr-xr-xruntests.sh4
1 files changed, 3 insertions, 1 deletions
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