timeout_variation_2.phpt 359 B

12345678910111213141516171819
  1. --TEST--
  2. Timeout within array_map
  3. --SKIPIF--
  4. <?php
  5. if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
  6. if (PHP_OS_FAMILY !== "Windows") die("skip Windows only test");
  7. ?>
  8. --FILE--
  9. <?php
  10. set_time_limit(1);
  11. $a = array(1, 1);
  12. array_map("sleep", $a);
  13. ?>
  14. never reached here
  15. --EXPECTF--
  16. Fatal error: Maximum execution time of 1 second exceeded in %s on line %d