From 399fee64f84bc3d95ea5c4cbf219e05819520dc4 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 24 Jan 2019 23:05:03 +0100 Subject: [PATCH] [Process] disable transient test on Windows --- src/Symfony/Component/Process/Tests/ProcessTest.php | 4 ++++ 1 file changed, 4 insertions(+) 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();