timeout_variation_4.phpt 378 B

12345678910111213141516171819
  1. --TEST--
  2. Timeout within call_user_func
  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. call_user_func('sleep', 1);
  12. call_user_func('sleep', 1);
  13. ?>
  14. never reached here
  15. --EXPECTF--
  16. Fatal error: Maximum execution time of 1 second exceeded in %s on line %d