diff --git a/src/Symfony/Component/Process/Tests/ProcessTest.php b/src/Symfony/Component/Process/Tests/ProcessTest.php index a38287bcd9..914959b58c 100644 --- a/src/Symfony/Component/Process/Tests/ProcessTest.php +++ b/src/Symfony/Component/Process/Tests/ProcessTest.php @@ -54,6 +54,10 @@ class ProcessTest extends TestCase */ public function testInvalidCwd() { + if ('\\' === DIRECTORY_SEPARATOR) { + $this->markTestSkipped('False-positive on Windows/appveyor.'); + } + // Check that it works fine if the CWD exists $cmd = new Process('echo test', __DIR__); $cmd->run();