]> mj.ucw.cz Git - moe.git/blobdiff - eval/libeval.sh
Updated MO-P admin scripts to new directory layout.
[moe.git] / eval / libeval.sh
index 6d2ffb1932bea9a0ad7232e2dbbfd0a27aedd051..2bb84bb61cde45b77e66eb6a6d02c540bed3f376 100644 (file)
@@ -263,14 +263,14 @@ function test-result
        SG=${M#Caught fatal signal }
        SG=${SG#Committed suicide by signal }
        if [ "$SG" != "$M" ] ; then
-               SG=`kill -l $SG 2>/dev/null`
+               SG=`kill -l $SG 2>/dev/null` || SG=
                [ -z "$SG" ] || M="$M (SIG$SG)"
        fi
 
        # Translate runtime errors to readable strings
        RE=${M#Exited with error status }
        if [ -n "$EXIT_CODE_HOOK" -a "$RE" != "$M" ] ; then
-               NEWMSG=`$EXIT_CODE_HOOK $RE`
+               NEWMSG=`$EXIT_CODE_HOOK $RE` || NEWMSG=
                if [ -n "$NEWMSG" ] ; then
                        M="Runtime error $RE: $NEWMSG"
                fi