php-src/ext/gd/tests/bug72697.phpt
Christoph M. Becker a375d54785
Migrate skip checks to --EXTENSIONS-- for ext/gd
Cf. PR #6787.

Closes GH-6994.
2021-05-22 15:38:51 +02:00

25 lines
486 B
PHP

--TEST--
Bug #72697: select_colors write out-of-bounds
--EXTENSIONS--
gd
--SKIPIF--
<?php
if (PHP_INT_MAX !== 9223372036854775807) die("skip for 64-bit long systems only");
?>
--FILE--
<?php
require __DIR__ . '/func.inc';
$img=imagecreatetruecolor(10, 10);
trycatch_dump(
fn() => imagetruecolortopalette($img, false, PHP_INT_MAX / 8)
);
?>
DONE
--EXPECT--
!! [ValueError] imagetruecolortopalette(): Argument #3 ($num_colors) must be greater than 0 and less than 2147483647
DONE