php-src/tests/basic/timeout_variation_8.phpt

22 lines
382 B
Plaintext
Raw Normal View History

2015-03-16 18:30:04 +00:00
--TEST--
Timeout within foreach loop
--SKIPIF--
<?php
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
?>
2015-03-16 18:30:04 +00:00
--FILE--
<?php
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
2015-03-16 18:30:04 +00:00
set_time_limit($t);
foreach (range(0, 42) as $i) {
busy_wait(1);
2015-03-16 18:30:04 +00:00
}
?>
never reached here
--EXPECTF--
Fatal error: Maximum execution time of 3 seconds exceeded in %s on line %d