- Fixed build on php-trunk
[m6w6/ext-http] / tests / send_data_001.phpt
1 --TEST--
2 http_send_data() NIL-NUM range
3 --SKIPIF--
4 <?php
5 include 'skip.inc';
6 checkcgi();
7 checkmin("5.2.5");
8 ?>
9 --ENV--
10 HTTP_RANGE=bytes=-5
11 --FILE--
12 <?php
13 http_send_content_type('text/plain');
14 http_send_data(str_repeat('123abc', 1000));
15 ?>
16 --EXPECTF--
17 Status: 206%s
18 X-Powered-By: PHP/%s
19 Content-Type: text/plain
20 Accept-Ranges: bytes
21 Content-Range: bytes 5995-5999/6000
22 Content-Length: 5
23
24 23abc