8000 [Process] Skip false-positive test on Windows/appveyor · symfony/symfony@1aa9837 · GitHub
[go: up one dir, main page]

Skip to content 8000

Commit 1aa9837

Browse files
[Process] Skip false-positive test on Windows/appveyor
1 parent 21dca38 commit 1aa9837

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ protected function tearDown()
5454
*/
5555
public function testInvalidCwd()
5656
{
57+
if ('\\' === DIRECTORY_SEPARATOR) {
58+
$this->markTestSkipped('False-positive on Windows/appveyor.');
59+
}
60+
5761
// Check that it works fine if the CWD exists
5862
$cmd = new Process('echo test', __DIR__);
5963
$cmd->run();

0 commit comments

Comments
 (0)
0