Merge branch '3.3' into 3.4

* 3.3:
  [Process] Skip ProcessTest::testSimpleInputStream() because of bug #75515 in PHP 7.2RC6
This commit is contained in:
Nicolas Grekas 2017-11-13 11:20:40 +01:00
commit e2ad89268b

View File

@ -1263,6 +1263,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);');