libgd00094.phpt 392 B

12345678910111213141516
  1. --TEST--
  2. libgd #94 (imagecreatefromxbm can crash if gdImageCreate fails)
  3. --EXTENSIONS--
  4. gd
  5. --SKIPIF--
  6. <?php
  7. if (!GD_BUNDLED) die("skip requires bundled GD library\n");
  8. ?>
  9. --FILE--
  10. <?php
  11. $im = imagecreatefromxbm(__DIR__ . '/libgd00094.xbm');
  12. var_dump($im);
  13. ?>
  14. --EXPECTF--
  15. Warning: imagecreatefromxbm(): "%slibgd00094.xbm" is not a valid XBM file in %slibgd00094.php on line %d
  16. bool(false)