Skip to content

Commit fee217f

Browse files
committed
Update tests/Symfony/Tests/Component/Process/ProcessTest.php
1 parent d58e682 commit fee217f

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 ) {
59-
$this->markTestSkipped('Test hangs on Windows & PHP due to https://bugs.php.net/bug.php?id=60120');
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');
6060
}
6161

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

0 commit comments

Comments
 (0)