diff --git a/test/ControlsTest.php b/test/ControlsTest.php index d1837ce4..11f0103b 100644 --- a/test/ControlsTest.php +++ b/test/ControlsTest.php @@ -197,6 +197,9 @@ public function testCustomNewline() */ public function testAppliedFlags($flag, $line_count) { + if (defined('HHVM_VERSION')) { + $this->markTestSkipped('HHVM CSV parsing is different'); + } $path = __DIR__."/data/tmp.txt"; $obj = new SplFileObject($path, "w+"); $obj->fwrite("1st\n2nd\n");