8000 [Process] Skip test that is still getting stuck on windows · symfony/symfony@4cd0fb4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4cd0fb4

Browse files
committed
[Process] Skip test that is still getting stuck on windows
1 parent e82a05d commit 4cd0fb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Process/Tests/ProcessTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ public function testProcessResponses($expected, $getter, $code)
5555
*/
5656
public function testProcessPipes($expected, $code)
5757
{
58-
if (strpos(PHP_OS, "WIN") === 0 && version_compare(phpversion(), "5.3.9", "<")) {
59-
$this->markTestSkipped('Test hangs on Windows & PHP due to https://bugs.php.net/bug.php?id=60120 fixed in http://svn.php.net/viewvc?view=revision&revision=318366');
58+
if (strpos(PHP_OS, "WIN") === 0) {
59+
$this->markTestSkipped('Test hangs on Windows & PHP due to https://bugs.php.net/bug.php?id=60120 and https://bugs.php.net/bug.php?id=51800');
6060
}
6161

6262
$p = new Process(sprintf('php -r %s', escapeshellarg($code)));

0 commit comments

Comments
 (0)
0