timeout_variation_9.phpt 413 B

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