helly           Sun Jul 16 19:50:43 2006 UTC

  Added files:                 
    /php-src/ext/spl/tests      iterator_049.phpt 
  Log:
  - This test fails right now and requires a zend API change to fix
  

http://cvs.php.net/viewvc.cgi/php-src/ext/spl/tests/iterator_049.phpt?view=markup&rev=1.1
Index: php-src/ext/spl/tests/iterator_049.phpt
+++ php-src/ext/spl/tests/iterator_049.phpt
--TEST--
SPL: ArrayIterator with NULL key
--SKIPIF--
<?php if (!extension_loaded("spl")) print "skip"; ?>
--FILE--
<?php

$ar = new ArrayIterator(array(NULL=>NULL));
var_dump($ar);
var_dump($ar->getArrayCopy());

?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
object(ArrayIterator)#1 (1) {
  [""]=>
  NULL
}
array(1) {
  [""]=>
  NULL
}
===DONE===


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

Reply via email to