if a test execution is aborted due to a signal, and the process

returns no other exitcode, use 2000 + signal number as return code
This commit is contained in:
Yang Tse 2008-09-26 18:56:56 +00:00
parent 83c199bb00
commit a632f6d5b1
1 changed files with 1 additions and 0 deletions

View File

@ -2109,6 +2109,7 @@ sub singletest {
}
else {
$cmdres >>= 8;
$cmdres = (2000 + $signal_num) if($signal_num && !$cmdres);
}
}
if(!$dumped_core) {