8000 [Process] fix ProcessTest::testProcessPipes hangs on Windows on branc… · symfony/symfony@f694615 · GitHub
[go: up one dir, main page]

Skip to content

Commit f694615

Browse files
committed
[Process] fix ProcessTest::testProcessPipes hangs on Windows on branch 2.0
1 parent 07d108a commit f694615

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Symfony/Tests/Component/Process/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