rdohms                                   Tue, 29 Sep 2009 14:34:06 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=288946

Log:
Fixing tests for head and wrong SKIPIF blocks

Changed paths:
    U   
php/php-src/branches/PHP_5_2/ext/standard/tests/general_functions/bug49692.phpt
    U   
php/php-src/branches/PHP_5_3/ext/standard/tests/general_functions/bug49692.phpt
    U   php/php-src/trunk/ext/standard/tests/general_functions/bug49692.phpt

Modified: 
php/php-src/branches/PHP_5_2/ext/standard/tests/general_functions/bug49692.phpt
===================================================================
--- 
php/php-src/branches/PHP_5_2/ext/standard/tests/general_functions/bug49692.phpt 
    2009-09-29 14:14:02 UTC (rev 288945)
+++ 
php/php-src/branches/PHP_5_2/ext/standard/tests/general_functions/bug49692.phpt 
    2009-09-29 14:34:06 UTC (rev 288946)
@@ -2,10 +2,6 @@
 Bug #49692: parse_ini_file() throws errors when key contains '/' (forward 
slash)
 --CREDITS--
 Rafael Dohms <rdohms [at] gmail [dot] com>
---SKIPIF--
-<?php
-       if (!extension_loaded("gd")) die("skip GD not present");
-?>
 --FILE--
 <?php


Modified: 
php/php-src/branches/PHP_5_3/ext/standard/tests/general_functions/bug49692.phpt
===================================================================
--- 
php/php-src/branches/PHP_5_3/ext/standard/tests/general_functions/bug49692.phpt 
    2009-09-29 14:14:02 UTC (rev 288945)
+++ 
php/php-src/branches/PHP_5_3/ext/standard/tests/general_functions/bug49692.phpt 
    2009-09-29 14:34:06 UTC (rev 288946)
@@ -2,10 +2,6 @@
 Bug #49692: parse_ini_file() throws errors when key contains '/' (forward 
slash)
 --CREDITS--
 Rafael Dohms <rdohms [at] gmail [dot] com>
---SKIPIF--
-<?php
-       if (!extension_loaded("gd")) die("skip GD not present");
-?>
 --FILE--
 <?php


Modified: php/php-src/trunk/ext/standard/tests/general_functions/bug49692.phpt
===================================================================
--- php/php-src/trunk/ext/standard/tests/general_functions/bug49692.phpt        
2009-09-29 14:14:02 UTC (rev 288945)
+++ php/php-src/trunk/ext/standard/tests/general_functions/bug49692.phpt        
2009-09-29 14:34:06 UTC (rev 288946)
@@ -2,10 +2,6 @@
 Bug #49692: parse_ini_file() throws errors when key contains '/' (forward 
slash)
 --CREDITS--
 Rafael Dohms <rdohms [at] gmail [dot] com>
---SKIPIF--
-<?php
-       if (!extension_loaded("gd")) die("skip GD not present");
-?>
 --FILE--
 <?php

@@ -14,11 +10,11 @@
 ?>
 --EXPECTF--
 array(1) {
-  ["sitemap"]=>
+  [u"sitemap"]=>
   array(2) {
-    ["/home"]=>
-    string(13) "default:index"
-    ["/info"]=>
-    string(12) "default:info"
+    [u"/home"]=>
+    unicode(13) "default:index"
+    [u"/info"]=>
+    unicode(12) "default:info"
   }
 }

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

Reply via email to