mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
- Fix test to actually test for the bug
This commit is contained in:
parent
82ddba83c6
commit
2a1fc332b5
1 changed files with 0 additions and 2 deletions
|
@ -6,14 +6,12 @@ display_errors=stderr
|
||||||
<?php
|
<?php
|
||||||
echo __LINE__ . "\n";
|
echo __LINE__ . "\n";
|
||||||
ini_set('memory_limit', 100);
|
ini_set('memory_limit', 100);
|
||||||
ob_start(NULL, 10);
|
|
||||||
echo __LINE__ ."\n";
|
echo __LINE__ ."\n";
|
||||||
ob_start();
|
ob_start();
|
||||||
$i = 0;
|
$i = 0;
|
||||||
while($i++ < 5000) {
|
while($i++ < 5000) {
|
||||||
echo str_repeat("may not be displayed ", 42);
|
echo str_repeat("may not be displayed ", 42);
|
||||||
}
|
}
|
||||||
ob_end_flush();
|
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
?>
|
?>
|
||||||
--EXPECTF--
|
--EXPECTF--
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue