php-src/tests/basic/timeout_variation_0.phpt
2015-03-16 13:21:33 -07:00

20 lines
299 B
PHP

--TEST--
Timeout within while loop
--FILE--
<?php
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
set_time_limit($t);
while(1) {
echo 1;
busy_sleep(1);
}
?>
never reached here
--EXPECTF--
111
Fatal error: Maximum execution time of 3 seconds exceeded in %s on line %d