Skip to content

Commit aa1959e

Browse files
committed
Disable memory stream on ExtEventLoop with PHP7
1 parent 73fea73 commit aa1959e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/ExtEventLoopTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ public function writeToStream($stream, $content)
6868
*/
6969
public function testCanUseReadableStreamWithFeatureFds()
7070
{
71+
if (PHP_VERSION_ID > 70000) {
72+
$this->markTestSkipped('Memory stream not supported');
73+
}
74+
7175
$this->loop = $this->createLoop(true);
7276

7377
$input = fopen('php://temp/maxmemory:0', 'r+');

0 commit comments

Comments
 (0)