timeout_variation_7.phpt 303 B

1234567891011121314151617181920
  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. set_time_limit(1);
  10. $y = 0;
  11. for ($i = 0; $i < INF; $i++) {
  12. $y++;
  13. }
  14. ?>
  15. never reached here
  16. --EXPECTF--
  17. Fatal error: Maximum execution time of 1 second exceeded in %s on line %d