Diff for /embedaddon/php/tests/output/ob_start_basic_004.phpt between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 23:48:06 version 1.1.1.2, 2012/05/29 12:34:34
Line 1 Line 1
 --TEST--  --TEST--
ob_start() chunk_size: confirm buffer is flushed after any output call that causes its length to equal or exceed chunk_size.ob_start() chunk_size: confirm buffer is flushed after any output call that causes its length to equal or exceed chunk_size. 
 --FILE--  --FILE--
 <?php  <?php
 /*   /* 
  * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])   * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])
  * Function is implemented in main/output.c   * Function is implemented in main/output.c
 */   */ 
// In HEAD, $chunk_size value of 1 should not have any special behaviour (http://marc.info/?l=php-internals&m=123476465621346&w=2).
 function callback($string) {  function callback($string) {
         global $callback_invocations;          global $callback_invocations;
         $callback_invocations++;          $callback_invocations++;
Line 40  f[call:1; len:8]12345678 Line 40  f[call:1; len:8]12345678
 f[call:1; len:8]12345678  f[call:1; len:8]12345678
   
 ----( chunk_size: 1, output append size: 1 )----  ----( chunk_size: 1, output append size: 1 )----
f[call:1; len:8]12345678f[call:1; len:1]1
 f[call:2; len:1]2
 f[call:3; len:1]3
 f[call:4; len:1]4
 f[call:5; len:1]5
 f[call:6; len:1]6
 f[call:7; len:1]7
 f[call:8; len:1]8
 f[call:9; len:0]
   
 ----( chunk_size: 2, output append size: 1 )----  ----( chunk_size: 2, output append size: 1 )----
 f[call:1; len:2]12  f[call:1; len:2]12
Line 85  f[call:1; len:8]12345678 Line 93  f[call:1; len:8]12345678
 f[call:1; len:8]12345678  f[call:1; len:8]12345678
   
 ----( chunk_size: 1, output append size: 4 )----  ----( chunk_size: 1, output append size: 4 )----
f[call:1; len:8]12345678f[call:1; len:4]1234
 f[call:2; len:4]5678
 f[call:3; len:0]
   
 ----( chunk_size: 2, output append size: 4 )----  ----( chunk_size: 2, output append size: 4 )----
 f[call:1; len:4]1234  f[call:1; len:4]1234

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


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