From ce04c98101cf2a16df1e7e3848b38f50689e981a Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 13 Nov 2017 11:10:10 +0100 Subject: [PATCH] [Process] Skip ProcessTest::testSimpleInputStream() because of bug #75515 in PHP 7.2RC6 --- 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 d939604750..9524778393 100644 --- a/src/Symfony/Component/Process/Tests/ProcessTest.php +++ b/src/Symfony/Component/Process/Tests/ProcessTest.php @@ -1223,6 +1223,10 @@ class ProcessTest extends TestCase public function testSimpleInputStream() { + if (\PHP_VERSION_ID === 70200 && \PHP_EXTRA_VERSION === 'RC6') { + $this->markTestSkipped('See bug #75515 in PHP 7.2RC6.'); + } + $input = new InputStream(); $process = $this->getProcessForCode('echo \'ping\'; stream_copy_to_stream(STDIN, STDOUT);');