php-src/ext/spl/tests/bug53144.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

20 lines
272 B
PHP

--TEST--
Bug #53144 (Segfault in SplObjectStorage::removeAll)
--FILE--
<?php
$o1 = new StdClass;
$o2 = new StdClass;
$b = new SplObjectStorage();
$b[$o1] = "bar";
$b[$o2] = "baz";
var_dump(count($b));
$b->removeAll($b);
var_dump(count($b));
?>
--EXPECT--
int(2)
int(0)