xref: /php-src/ext/zlib/tests/bug61443.phpt (revision 39131219)
1--TEST--
2bug #61443
3--EXTENSIONS--
4zlib
5--FILE--
6<?php
7ob_start(); echo "foo\n"; ob_get_clean();
8if(!headers_sent()) ini_set('zlib.output_compression', true); echo "end\n";
9?>
10DONE
11--EXPECT--
12end
13DONE
14