summaryrefslogtreecommitdiff
path: root/ext/gd
diff options
context:
space:
mode:
authorRafael Machado Dohms <rdohms@php.net>2009-07-20 03:48:55 +0000
committerRafael Machado Dohms <rdohms@php.net>2009-07-20 03:48:55 +0000
commit12ef53b2045a49d18aea85fac59beb2f99589f0b (patch)
tree8fc8bb799fd75a05add600808d0c714abd3cd5fe /ext/gd
parent23a423aea0e6d42015b41cdcd3557e66f62ec16e (diff)
downloadphp-git-12ef53b2045a49d18aea85fac59beb2f99589f0b.tar.gz
Removing deprecated test replaced by individual tests for imageistruecolor and imagetruecolortopalette
Diffstat (limited to 'ext/gd')
-rw-r--r--ext/gd/tests/truecolor.phpt19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/gd/tests/truecolor.phpt b/ext/gd/tests/truecolor.phpt
deleted file mode 100644
index 9e30cbe29c..0000000000
--- a/ext/gd/tests/truecolor.phpt
+++ /dev/null
@@ -1,19 +0,0 @@
---TEST--
-imageistruecolor, truecolortopalette
---SKIPIF--
-<?php
- if (!function_exists('imagetruecolortopalette')) die("skip gd extension not available\n");
-?>
---FILE--
-<?php
-$im = imagecreatetruecolor(1,1);
-if (imageistruecolor($im)) echo "ok\n";
-
-if (imagetruecolortopalette($im, 1,2)) echo "ok\n";
-if (!imageistruecolor($im)) echo "ok\n";
-
-?>
---EXPECTF--
-ok
-ok
-ok