php-src/ext/gd/tests/bug66590_1.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

19 lines
314 B
PHP

--TEST--
Bug #66590 (imagewebp() doesn't pad to even length) - segfault
--EXTENSIONS--
gd
--SKIPIF--
<?php
if (!function_exists('imagewebp')) die('skip WebP support not available');
?>
--FILE--
<?php
$im = imagecreatetruecolor(6, 6);
ob_start();
imagewebp($im);
ob_end_clean();
echo "ready\n";
?>
--EXPECT--
ready