timeout_variation_10.phpt 454 B

123456789101112131415161718192021
  1. --TEST--
  2. Timeout within shutdown function, variation
  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. ?>
  14. shutdown happens after here
  15. --EXPECTF--
  16. shutdown happens after here
  17. Fatal error: Maximum execution time of 1 second exceeded in %s on line %d