minor #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
This commit is contained in:
Nicolas Grekas 2017-11-13 11:19:41 +01:00
commit a050ee251f

View File

@ -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);');