bjori                                    Tue, 30 Aug 2011 13:46:24 +0000

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

Log:
Add skipifs for bug#54971 (patch by datibbaw@)

Bug: https://bugs.php.net/54971 (Closed) wrong result with DOMNodeList and 
iterator_to_array use_keys
      
Changed paths:
    U   php/php-src/branches/PHP_5_3/ext/spl/tests/bug54971.phpt
    U   php/php-src/branches/PHP_5_4/ext/spl/tests/bug54971.phpt
    U   php/php-src/trunk/ext/spl/tests/bug54971.phpt

Modified: php/php-src/branches/PHP_5_3/ext/spl/tests/bug54971.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/spl/tests/bug54971.phpt    2011-08-30 
13:41:57 UTC (rev 315779)
+++ php/php-src/branches/PHP_5_3/ext/spl/tests/bug54971.phpt    2011-08-30 
13:46:24 UTC (rev 315780)
@@ -1,5 +1,9 @@
 --TEST--
 Bug #54971 (Wrong result when using iterator_to_array with use_keys on true)
+--SKIPIF--
+<?php
+if (!extension_loaded('dom')) die("skip this test needs --enable-dom");
+?>
 --FILE--
 <?php


Modified: php/php-src/branches/PHP_5_4/ext/spl/tests/bug54971.phpt
===================================================================
--- php/php-src/branches/PHP_5_4/ext/spl/tests/bug54971.phpt    2011-08-30 
13:41:57 UTC (rev 315779)
+++ php/php-src/branches/PHP_5_4/ext/spl/tests/bug54971.phpt    2011-08-30 
13:46:24 UTC (rev 315780)
@@ -1,5 +1,9 @@
 --TEST--
 Bug #54971 (Wrong result when using iterator_to_array with use_keys on true)
+--SKIPIF--
+<?php
+if (!extension_loaded('dom')) die("skip this test needs --enable-dom");
+?>
 --FILE--
 <?php


Modified: php/php-src/trunk/ext/spl/tests/bug54971.phpt
===================================================================
--- php/php-src/trunk/ext/spl/tests/bug54971.phpt       2011-08-30 13:41:57 UTC 
(rev 315779)
+++ php/php-src/trunk/ext/spl/tests/bug54971.phpt       2011-08-30 13:46:24 UTC 
(rev 315780)
@@ -1,5 +1,9 @@
 --TEST--
 Bug #54971 (Wrong result when using iterator_to_array with use_keys on true)
+--SKIPIF--
+<?php
+if (!extension_loaded('dom')) die("skip this test needs --enable-dom");
+?>
 --FILE--
 <?php


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

Reply via email to