File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / gd / tests / gd_info_variation1.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:56 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
Test gd_info() function : variation - Checking all the values in returned array
--SKIPIF--
<?php
if(!extension_loaded('gd')) {
    die('skip gd extension is not loaded');
}
if(!function_exists('gd_info')) {
    die('skip gd_info function is not available');
}
?>
--FILE--
<?php
/* Prototype  : array gd_info()
 * Description: Retrieve information about the currently installed GD library
 * Source code: ext/gd/gd.c
 */

echo "*** Testing gd_info() : variation ***\n";

var_dump(gd_info());
?>
===DONE===
--EXPECTF--
*** Testing gd_info() : variation ***
array(%d) {
  ["GD Version"]=>
  string(%d) %a
  ["FreeType Support"]=>
  bool%a
  ["T1Lib Support"]=>
  bool%a
  ["GIF Read Support"]=>
  bool%a
  ["GIF Create Support"]=>
  bool%a
  ["JPEG Support"]=>
  bool%a
  ["PNG Support"]=>
  bool%a
  ["WBMP Support"]=>
  bool%a
  ["XPM Support"]=>
  bool%a
  ["XBM Support"]=>
  bool%a
  ["JIS-mapped Japanese Font Support"]=>
  bool%a
}
===DONE===

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>