mirror of
https://github.com/curl/curl.git
synced 2026-07-24 10:07:20 +03:00
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:
parent
83c199bb00
commit
a632f6d5b1
1 changed files with 1 additions and 0 deletions
|
|
@ -2109,6 +2109,7 @@ sub singletest {
|
|||
}
|
||||
else {
|
||||
$cmdres >>= 8;
|
||||
$cmdres = (2000 + $signal_num) if($signal_num && !$cmdres);
|
||||
}
|
||||
}
|
||||
if(!$dumped_core) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue