mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
21 lines
323 B
PHP
21 lines
323 B
PHP
--TEST--
|
|
Timeout within for loop
|
|
--FILE--
|
|
<?php
|
|
|
|
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
|
|
|
|
$t = 3;
|
|
set_time_limit($t);
|
|
|
|
for($i = 0; $i < 42; $i++) {
|
|
echo 1;
|
|
busy_sleep(1);
|
|
}
|
|
|
|
?>
|
|
never reached here
|
|
--EXPECTF--
|
|
111
|
|
Fatal error: Maximum execution time of 3 seconds exceeded in %s on line %d
|