Skip to content

Commit ce04c98

Browse files
[Process] Skip ProcessTest::testSimpleInputStream() because of bug #75515 in PHP 7.2RC6
1 parent 239dd62 commit ce04c98

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
@@ -1223,6 +1223,10 @@ public function testIteratorInput()
12231223

12241224
public function testSimpleInputStream()
12251225
{
1226+
if (\PHP_VERSION_ID === 70200 && \PHP_EXTRA_VERSION === 'RC6') {
1227+
$this->markTestSkipped('See bug #75515 in PHP 7.2RC6.');
1228+
}
1229+
12261230
$input = new InputStream();
12271231

12281232
$process = $this->getProcessForCode('echo \'ping\'; stream_copy_to_stream(STDIN, STDOUT);');

0 commit comments

Comments
 (0)