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