[PHP-CVS] cvs: php4 /ext/gd/tests bug19366.phpt

2002-11-15 Thread Marcus Boerger
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');
+?
 --FILE--
 ?php
 echo Alive\n;



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




Re: [PHP-CVS] cvs: php4 /ext/gd/tests bug19366.phpt

2002-11-15 Thread Derick Rethans
On Fri, 15 Nov 2002, Marcus Boerger wrote:

 helly Fri Nov 15 10:22:07 2002 EDT
 
   Modified files:  
 /php4/ext/gd/testsbug19366.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




Re: [PHP-CVS] cvs: php4 /ext/gd/tests bug19366.phpt

2002-11-15 Thread Marcus Börger
?????? there is no ini section any longer since it was empty

At 16:33 15.11.2002, Derick Rethans wrote:

On Fri, 15 Nov 2002, Marcus Boerger wrote:

 helly Fri Nov 15 10:22:07 2002 EDT

   Modified files:
 /php4/ext/gd/testsbug19366.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




Re: [PHP-CVS] cvs: php4 /ext/gd/tests bug19366.phpt

2002-11-15 Thread Derick Rethans
On Fri, 15 Nov 2002, Marcus Börger wrote:

 ?????? there is no ini section any longer since it was empty

:) Didn't see the difference between ---INI-- and --INI--, sorry

Derick

 
 At 16:33 15.11.2002, Derick Rethans wrote:
 On Fri, 15 Nov 2002, Marcus Boerger wrote:
 
   helly Fri Nov 15 10:22:07 2002 EDT
  
 Modified files:
   /php4/ext/gd/testsbug19366.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? ]-
 

-- 

---
 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




Re: [PHP-CVS] cvs: php4 /ext/gd/tests bug19366.phpt

2002-11-15 Thread Jani Taskinen

MFH?

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.1Fri Oct 11 11:50:37 2002
+++ php4/ext/gd/tests/bug19366.phptFri 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');
+?
 --FILE--
 ?php
 echo Alive\n;





-- 
- For Sale! -


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