We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 362116c + fb68303 commit 5191461Copy full SHA for 5191461
run-tests.php
@@ -1289,6 +1289,9 @@ function system_with_timeout(
1289
}
1290
if ($stat["exitcode"] > 128 && $stat["exitcode"] < 160) {
1291
$data .= "\nTermsig=" . ($stat["exitcode"] - 128) . "\n";
1292
+ } else if (defined('PHP_WINDOWS_VERSION_MAJOR') && (($stat["exitcode"] >> 28) & 0b1111) === 0b1100) {
1293
+ // https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/87fba13e-bf06-450e-83b1-9241dc81e781
1294
+ $data .= "\nTermsig=" . $stat["exitcode"] . "\n";
1295
1296
1297
proc_close($proc);
0 commit comments