From f694615bc517feb632ca4d044bf8efd829a4727e Mon Sep 17 00:00:00 2001 From: Christophe L Date: Sat, 25 Aug 2012 23:29:32 +0400 Subject: [PATCH] [Process] fix ProcessTest::testProcessPipes hangs on Windows on branch 2.0 --- tests/Symfony/Tests/Component/Process/ProcessTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Symfony/Tests/Component/Process/ProcessTest.php b/tests/Symfony/Tests/Component/Process/ProcessTest.php index 2bc746c461..fba1eafd9d 100644 --- a/tests/Symfony/Tests/Component/Process/ProcessTest.php +++ b/tests/Symfony/Tests/Component/Process/ProcessTest.php @@ -55,8 +55,8 @@ class ProcessTest extends \PHPUnit_Framework_TestCase */ public function testProcessPipes($expected, $code) { - if (strpos(PHP_OS, "WIN") === 0 && version_compare(phpversion(), "5.3.9", "<")) { - $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'); + if (strpos(PHP_OS, "WIN") === 0) { + $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'); } $p = new Process(sprintf('php -r %s', escapeshellarg($code)));