helly           Fri Nov 15 11:43:43 2002 EDT

  Modified files:              (Branch: PHP_4_3)
    /php4/ext/gd/tests  bug19366.phpt 
  Log:
  MFH: 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.1.2.1
--- php4/ext/gd/tests/bug19366.phpt:1.1 Fri Oct 11 11:50:37 2002
+++ php4/ext/gd/tests/bug19366.phpt     Fri Nov 15 11:43:43 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

Reply via email to