We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a050ee2 commit 65ebe99Copy full SHA for 65ebe99
src/Symfony/Component/Process/Tests/ProcessTest.php
@@ -1223,13 +1223,9 @@ public function testIteratorInput()
1223
1224
public function testSimpleInputStream()
1225
{
1226
- if (\PHP_VERSION_ID === 70200 && \PHP_EXTRA_VERSION === 'RC6') {
1227
- $this->markTestSkipped('See bug #75515 in PHP 7.2RC6.');
1228
- }
1229
-
1230
$input = new InputStream();
1231
1232
- $process = $this->getProcessForCode('echo \'ping\'; stream_copy_to_stream(STDIN, STDOUT);');
+ $process = $this->getProcessForCode('echo \'ping\'; echo fread(STDIN, 4); echo fread(STDIN, 4);');
1233
$process->setInput($input);
1234
1235
$process->start(function ($type, $data) use ($input) {
0 commit comments