summaryrefslogtreecommitdiff
path: root/ext/gd/tests/gif2gd.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/gd/tests/gif2gd.phpt')
-rw-r--r--ext/gd/tests/gif2gd.phpt32
1 files changed, 0 insertions, 32 deletions
diff --git a/ext/gd/tests/gif2gd.phpt b/ext/gd/tests/gif2gd.phpt
deleted file mode 100644
index 75291777d8..0000000000
--- a/ext/gd/tests/gif2gd.phpt
+++ /dev/null
@@ -1,32 +0,0 @@
---TEST--
-gif --> gd1/gd2 conversion test
---SKIPIF--
-<?php
- if (!extension_loaded('gd')) {
- die("skip gd extension not available.");
- }
- if (!GD_BUNDLED) {
- die("skip external GD libraries always fail");
- }
- if (!function_exists("imagecreatefromgif")) {
- die("skip gif read support unavailable");
- }
-?>
---FILE--
-<?php
- $cwd = dirname(__FILE__);
-
- echo "GIF to GD1 conversion: ";
- echo imagegd(imagecreatefromgif($cwd . "/conv_test.gif"), $cwd . "/test.gd1") ? 'ok' : 'failed';
- echo "\n";
-
- echo "GIF to GD2 conversion: ";
- echo imagegd2(imagecreatefromgif($cwd . "/conv_test.gif"), $cwd . "/test.gd2") ? 'ok' : 'failed';
- echo "\n";
-
- @unlink($cwd . "/test.gd1");
- @unlink($cwd . "/test.gd2");
-?>
---EXPECT--
-GIF to GD1 conversion: ok
-GIF to GD2 conversion: ok