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 ddea5c0 + a480bf8 commit fb68303Copy full SHA for fb68303
run-tests.php
@@ -1294,6 +1294,9 @@ function system_with_timeout(
1294
}
1295
if ($stat["exitcode"] > 128 && $stat["exitcode"] < 160) {
1296
$data .= "\nTermsig=" . ($stat["exitcode"] - 128) . "\n";
1297
+ } else if (defined('PHP_WINDOWS_VERSION_MAJOR') && (($stat["exitcode"] >> 28) & 0b1111) === 0b1100) {
1298
+ // https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/87fba13e-bf06-450e-83b1-9241dc81e781
1299
+ $data .= "\nTermsig=" . $stat["exitcode"] . "\n";
1300
1301
1302
proc_close($proc);
0 commit comments