8000 GH-2287 - Skip Process:processTest on Windows due to PHP bug #60120 · Kiruban2011/symfony@d58e682 · GitHub
[go: up one dir, main page]

Skip to content

Commit d58e682

Browse files
committed
symfonyGH-2287 - Skip Process:processTest on Windows due to PHP bug symfony#60120
1 parent 8dcde3c commit d58e682

File tree

1 file changed

+4
-0
lines change CB21 d

1 file changed

+4
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ 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');
60+
}
61+
5862
$p = new Process(sprintf('php -r %s', escapeshellarg($code)));
5963
$p->setStdin($expected);
6064
$p->run();

0 commit comments

Comments
 (0)
0