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 2103ef9 commit d9e7f89Copy full SHA for d9e7f89
1 file changed
tests/BufferTest.php
@@ -60,6 +60,11 @@ public function testWriteReturnsFalseWhenBufferIsFull()
60
*/
61
public function testWriteEmitsErrorWhenResourceIsNotWritable()
62
{
63
+ if (defined('HHVM_VERSION')) {
64
+ // via https://github.com/reactphp/stream/pull/52/files#r75493076
65
+ $this->markTestSkipped('HHVM allows writing to read-only memory streams');
66
+ }
67
+
68
$stream = fopen('php://temp', 'r');
69
$loop = $this->createLoopMock();
70
0 commit comments