Annotation of embedaddon/php/tests/lang/bug45392.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Bug #45392 (ob_start()/ob_end_clean() and memory_limit)
                      3: --INI--
                      4: display_errors=stderr
                      5: --FILE--
                      6: <?php
                      7: echo __LINE__ . "\n";
                      8: ini_set('memory_limit', 100);
                      9: ob_start();
                     10: $i = 0;
                     11: while($i++ < 5000)  {
                     12:   echo str_repeat("may not be displayed ", 42);
                     13: }
                     14: ob_end_clean();
                     15: ?>
                     16: --EXPECTF--
                     17: 2
                     18: Fatal error: Allowed memory size of %d bytes exhausted%s

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>