timeout_variation_7.phpt 375 B

123456789101112131415161718192021
  1. --TEST--
  2. Timeout within for loop
  3. --SKIPIF--
  4. <?php
  5. if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
  6. ?>
  7. --FILE--
  8. <?php
  9. include dirname(__FILE__) . DIRECTORY_SEPARATOR . "timeout_config.inc";
  10. set_time_limit($t);
  11. for ($i = 0; $i < 42; $i++) {
  12. busy_wait(1);
  13. }
  14. ?>
  15. never reached here
  16. --EXPECTF--
  17. Fatal error: Maximum execution time of 3 seconds exceeded in %s on line %d