Annotation of embedaddon/php/ext/gd/tests/libgd00094.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: libgd #94 (imagecreatefromxbm can crash if gdImageCreate fails)
        !             3: --SKIPIF--
        !             4: <?php
        !             5:        if (!extension_loaded('gd')) die("skip gd extension not available\n");
        !             6:        if (!GD_BUNDLED) die("skip requires bundled GD library\n");
        !             7: ?>
        !             8: --FILE--
        !             9: <?php
        !            10: $im = imagecreatefromxbm(dirname(__FILE__) . '/libgd00094.xbm');
        !            11: var_dump($im);
        !            12: ?>
        !            13: --EXPECTF--
        !            14: Warning: imagecreatefromxbm(): gd warning: product of memory allocation multiplication would exceed INT_MAX, failing operation gracefully
        !            15:  in %slibgd00094.php on line %d
        !            16: 
        !            17: Warning: imagecreatefromxbm(): '%slibgd00094.xbm' is not a valid XBM file in %slibgd00094.php on line %d
        !            18: bool(false)
        !            19: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>