diff --git a/cthon.zsh b/cthon.zsh index 84c58cf..1170ddc 100755 --- a/cthon.zsh +++ b/cthon.zsh @@ -41,6 +41,7 @@ for vers in $VERSION; do ARGS+=("--version $vers") done +ret=0 set +e date | python -u $COLOR for test in $TESTS; do @@ -50,5 +51,8 @@ for test in $TESTS; do --mountpoint ${MOUNTPOINT[-1]} \ --user $USER --mntopt sec=$sec \ $test $ARGS | python -u $COLOR + ret=$((ret+$?)) done done + +exit $ret