bug76801.phpt 257 B

123456789101112131415
  1. --TEST--
  2. include()ing files should not raise "too many open files" error
  3. --PHPDBG--
  4. r
  5. q
  6. --EXPECTF--
  7. [Successful compilation of %s]
  8. prompt> [Script ended normally]
  9. prompt>
  10. --FILE--
  11. <?php
  12. for ($i = 0; $i < 25000; ++$i) {
  13. include __DIR__.'/empty.inc';
  14. }