Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions tests/basic/GHSA-9pqp-7h25-4f32.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ GHSA-9pqp-7h25-4f32
if (!getenv('TEST_PHP_CGI_EXECUTABLE')) {
die("skip php-cgi not available");
}
if (substr(PHP_OS, 0, 3) == 'WIN') {
die("skip not for Windows in CI - probably resource issue");
}
?>
--FILE--
<?php
Expand All @@ -21,7 +18,6 @@ function test($boundaryLen) {
getenv('TEST_PHP_CGI_EXECUTABLE'),
'-C',
'-n',
__DIR__ . '/GHSA-9pqp-7h25-4f32.inc',
];

$boundary = str_repeat('A', $boundaryLen);
Expand All @@ -42,7 +38,7 @@ function test($boundaryLen) {
]);

$spec = [
0 => ['pipe', 'r'],
0 => [PHP_OS_FAMILY === "Windows" ? 'socket' : 'pipe', 'r'],
1 => STDOUT,
2 => STDOUT,
];
Expand Down
Loading