Commit 89040665 by Carsten Brandt

skip Imagine test on HHVM

parent 18c5bb13
......@@ -15,6 +15,8 @@ class ImageImagickTest extends AbstractImageTest
{
if (!class_exists('Imagick')) {
$this->markTestSkipped('Skipping ImageImagickTest, Imagick is not installed');
} elseif (defined('HHVM_VERSION')) {
$this->markTestSkipped('Imagine does not seem to support HHVM right now.');
} else {
Image::setImagine(null);
Image::$driver = Image::DRIVER_IMAGICK;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment