mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
26 lines
475 B
PHP
26 lines
475 B
PHP
--TEST--
|
|
Timeout within array_walk
|
|
--SKIPIF--
|
|
<?php
|
|
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
|
|
|
|
set_time_limit($t);
|
|
|
|
function cb(&$i, $k, $p)
|
|
{
|
|
busy_wait(1);
|
|
}
|
|
|
|
$a = array(1 => 1, 2 => 1, 3 => 1, 4 => 1, 5 => 1, 6 => 1, 7 => 1);
|
|
array_walk($a, "cb", "junk");
|
|
|
|
?>
|
|
never reached here
|
|
--EXPECTF--
|
|
Fatal error: Maximum execution time of 3 seconds exceeded in %s on line %d
|