diff options
author | Christoph M. Becker <cmb@php.net> | 2015-07-18 21:33:20 +0200 |
---|---|---|
committer | Christoph M. Becker <cmb@php.net> | 2015-07-18 21:33:20 +0200 |
commit | a66efb0b154236e63f98b95bd12bc31fea90500c (patch) | |
tree | 2b92fb63beb6fb395311edc8db79d2b91e9cc33a | |
parent | 37e03f6b32832ebf51429d1a9ad71a7cb9068a66 (diff) | |
download | php-git-a66efb0b154236e63f98b95bd12bc31fea90500c.tar.gz |
fixed PHPT that is always being skipped or otherwise would fail
-rw-r--r-- | ext/gd/tests/imagewebp_nullbyte_injection.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/gd/tests/imagewebp_nullbyte_injection.phpt b/ext/gd/tests/imagewebp_nullbyte_injection.phpt index 166beb181f..1808e8fb79 100644 --- a/ext/gd/tests/imagewebp_nullbyte_injection.phpt +++ b/ext/gd/tests/imagewebp_nullbyte_injection.phpt @@ -8,7 +8,7 @@ rmdir($tempdir); <?php if(!extension_loaded('gd')){ die('skip gd extension not available'); } $support = gd_info(); -if (!isset($support['WEBP Support']) || $support['WEBP Support'] === false) { +if (!isset($support['WebP Support']) || $support['WebP Support'] === false) { print 'skip webp support not available'; } ?> @@ -30,9 +30,9 @@ imagewebp($image, $temp); var_dump(file_exists($tempdir. "/test1")); var_dump(file_exists($tempdir. "/test1.tmp")); foreach (glob($tempdir . "/test*") as $file ) { unlink($file); } - +?> --EXPECTF-- -imagewbmp TEST +imagewebp TEST Warning: imagewebp(): Invalid 2nd parameter, filename must not contain null bytes in %s on line %d bool(false) |