summaryrefslogtreecommitdiff
path: root/ext/gd/tests/bug72596.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/gd/tests/bug72596.phpt')
-rw-r--r--ext/gd/tests/bug72596.phpt12
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/gd/tests/bug72596.phpt b/ext/gd/tests/bug72596.phpt
new file mode 100644
index 0000000000..2eb7dadb76
--- /dev/null
+++ b/ext/gd/tests/bug72596.phpt
@@ -0,0 +1,12 @@
+--TEST--
+Bug #72596 (imagetypes function won't advertise WEBP support)
+--SKIPIF--
+<?php
+if (!extension_loaded('gd')) die('skip gd extension not available');
+?>
+--FILE--
+<?php
+var_dump(function_exists('imagewebp') === (bool) (imagetypes() & IMG_WEBP));
+?>
+--EXPECT--
+bool(true)