Skip to content

Commit a050ee2

Browse files
minor symfony#24945 [Process] Skip ProcessTest::testSimpleInputStream() because of bug #75515 in PHP 7.2RC6 (nicolas-grekas)
This PR was merged into the 3.3 branch. Discussion ---------- [Process] Skip ProcessTest::testSimpleInputStream() because of bug #75515 in PHP 7.2RC6 | Q | A | ------------- | --- | Branch? | 3.3 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Our CI hangs on 7.2 RC6 because of https://bugs.php.net/75515 Let's skip it, hoping it to be fixed with RC7. Ping @remicollet @sgolemon FYI. Commits ------- ce04c98 [Process] Skip ProcessTest::testSimpleInputStream() because of bug #75515 in PHP 7.2RC6
2 parents 239dd62 + ce04c98 commit a050ee2

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)