1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 11:13:36 +02:00
Files
archived-php-src/ext/spl/tests/bug60082.phpt
T
2012-04-10 14:03:19 +02:00

24 lines
643 B
PHP
Executable File

--TEST--
Bug #60082 (100% CPU / when using references with ArrayObject(&$ref))
--SKIPIF--
<?php
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
if ((stristr(PHP_OS, 'freebsd'))) {
die('skip.. this test causes the run-tests.php to hang on Freebsd, see #60186');
}
?>
--INI--
allow_call_time_pass_reference = Off
--FILE--
<?php
$test = array();
$test = new ArrayObject(&$test);
$test['a'] = $test['b'];
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
Deprecated: Call-time pass-by-reference has been deprecated in %sbug60082.php on line %d
Fatal error: main(): Nesting level too deep - recursive dependency? in %sbug60082.php on line %d