diff options
author | Martin Pool <mbp@samba.org> | 2001-09-06 13:12:28 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-09-06 13:12:28 +0000 |
commit | d2476f0db3d3769eb23c9a4907d24e526cb61307 (patch) | |
tree | 34fdc528d62bfaffd39eccce6b4239bb45a15909 /runtests.sh | |
parent | 952cf8f4f34feba3d40f2cda90d2453f70aa2b3a (diff) | |
download | rsync-d2476f0db3d3769eb23c9a4907d24e526cb61307.tar.gz |
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-x | runtests.sh | 4 |
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 |