php-src/tests/basic/timeout_variation_1.phpt

20 lines
336 B
Plaintext
Raw Normal View History

2015-03-16 18:01:23 +00:00
--TEST--
Timeout within function
--SKIPIF--
2018-09-16 17:16:42 +00:00
<?php
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
if (PHP_OS_FAMILY !== "Windows") die("skip Windows only test");
?>
2015-03-16 18:01:23 +00:00
--FILE--
<?php
set_time_limit(1);
2015-03-16 18:01:23 +00:00
sleep(1);
sleep(1);
2015-03-16 18:01:23 +00:00
?>
never reached here
--EXPECTF--
Fatal error: Maximum execution time of 1 second exceeded in %s on line %d