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