jani            Thu May  7 13:43:48 2009 UTC

  Modified files:              
    /php-src/tests/lang bug45392.phpt 
  Log:
  - Fix test to actually test for the bug
  
http://cvs.php.net/viewvc.cgi/php-src/tests/lang/bug45392.phpt?r1=1.2&r2=1.3&diff_format=u
Index: php-src/tests/lang/bug45392.phpt
diff -u php-src/tests/lang/bug45392.phpt:1.2 
php-src/tests/lang/bug45392.phpt:1.3
--- php-src/tests/lang/bug45392.phpt:1.2        Tue Dec  9 22:53:25 2008
+++ php-src/tests/lang/bug45392.phpt    Thu May  7 13:43:48 2009
@@ -6,14 +6,12 @@
 <?php
 echo __LINE__ . "\n";
 ini_set('memory_limit', 100);
-ob_start(NULL, 10);
 echo __LINE__ ."\n";
 ob_start();
 $i = 0;
 while($i++ < 5000)  {
   echo str_repeat("may not be displayed ", 42);
 }
-ob_end_flush();
 ob_end_clean();
 ?>
 --EXPECTF--



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to