timeout_variation_0.phpt 298 B

123456789101112131415161718192021
  1. --TEST--
  2. Timeout within while 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. $x = true;
  11. $y = 0;
  12. while ($x) {
  13. $y++;
  14. }
  15. ?>
  16. never reached here
  17. --EXPECTF--
  18. Fatal error: Maximum execution time of 1 second exceeded in %s on line %d