On Fri, 15 Nov 2002, Marcus Boerger wrote:

> helly         Fri Nov 15 10:22:07 2002 EDT
> 
>   Modified files:              
>     /php4/ext/gd/tests        bug19366.phpt 
>   Log:
>   Simplify and show skip reason
>   
>   
> Index: php4/ext/gd/tests/bug19366.phpt
> diff -u php4/ext/gd/tests/bug19366.phpt:1.1 php4/ext/gd/tests/bug19366.phpt:1.2
> --- php4/ext/gd/tests/bug19366.phpt:1.1       Fri Oct 11 11:50:37 2002
> +++ php4/ext/gd/tests/bug19366.phpt   Fri Nov 15 10:22:07 2002
> @@ -1,10 +1,10 @@
>  --TEST--
>  gdimagefill() function (Bug #19366 (fixed in bundled libgd))
>  --SKIPIF--
> -<?php if (!extension_loaded('gd') || !GD_BUNDLED) die("skip\n"); ?>
> ---POST--
> ---GET--
> ---INI--
> +<?php 
> +     if (!extension_loaded('gd')) die("skip gd extension not available\n"); 
> +     if (!GD_BUNDLED) die('skip external GD libraries always fail');
> +?>

Why did you move it to the --INI-- section?

Derick

-- 

---------------------------------------------------------------------------
 Derick Rethans                                   http://derickrethans.nl/ 
 JDI Media Solutions
--------------[ if you hold a unix shell to your ear, do you hear the c? ]-


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to