Files
imagick/tests/bug_66098.phpt
Danack 4dc68efb92 Merge commit '11d9937d2377eddb1fa7cf31e7f5f89299942516'
* commit '11d9937d2377eddb1fa7cf31e7f5f89299942516':
  Added latest version of Image Magick as version to test on Travis.
  Cast size_t values to unsigned long so that printf knows the correct type.
  Added more version checks for fourier transform functions, and corrected the comparison.
  Added version check.
  Added version check for values.
  Added version check for MagickStatisticImage.

Also improved test message to avoid confusion.
2014-07-03 17:01:27 +01:00

15 lines
223 B
PHP

--TEST--
Bug #66098 Check that there is no segfault from zval_addref_p
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc');
--FILE--
<?php
$img = new Imagick();
echo $img->foobar;
echo "OK";
?>
--EXPECT--
OK