runtests.pl: Improved the check for a crash during torture tests

This commit is contained in:
Dan Fandrich 2014-04-29 00:06:32 +02:00
parent ef1322df67
commit a917f30c6b
1 changed files with 2 additions and 2 deletions

View File

@ -585,7 +585,7 @@ sub torture {
else {
$ret = runclient($testcmd);
}
#logmsg "$_ Returned " . $ret >> 8 . "\n";
#logmsg "$_ Returned " . ($ret >> 8) . "\n";
# Now clear the variable again
delete $ENV{'CURL_MEMLIMIT'} if($ENV{'CURL_MEMLIMIT'});
@ -599,7 +599,7 @@ sub torture {
# verify that it returns a proper error code, doesn't leak memory
# and doesn't core dump
if($ret & 255) {
if(($ret & 255) || ($ret >> 8) >= 128) {
logmsg " system() returned $ret\n";
$fail=1;
}