diff --git a/src/Symfony/Component/Process/Tests/ProcessTest.php b/src/Symfony/Component/Process/Tests/ProcessTest.php index 5e36e383641d..187226bd49de 100644 --- a/src/Symfony/Component/Process/Tests/ProcessTest.php +++ b/src/Symfony/Component/Process/Tests/ProcessTest.php @@ -135,6 +135,10 @@ public function testStopWithTimeoutIsActuallyWorking() public function testWaitUntilSpecificOutput() { + if ('\\' === \DIRECTORY_SEPARATOR) { + $this->markTestIncomplete('This test is too transient on Windows, help wanted to improve it'); + } + $p = $this->getProcess([self::$phpBin, __DIR__.'/KillableProcessWithOutput.php']); $p->start();