Annotation of embedaddon/php/ext/zlib/tests/gztell_error.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Test function gztell() by calling it more than or less than its expected arguments
                      3: --SKIPIF--
                      4: <?php 
                      5: if (!extension_loaded("zlib")) {
                      6:        print "skip - ZLIB extension not loaded"; 
                      7: }
                      8: ?>
                      9: --FILE--
                     10: <?php
                     11: $f = dirname(__FILE__)."/004.txt.gz";
                     12: $h = gzopen($f, 'r');
                     13: $extra_arg = 'nothing'; 
                     14: var_dump(gztell( $h, $extra_arg ) );
                     15: var_dump(gztell());
                     16: gzclose($h);
                     17: ?>
                     18: ===DONE===
                     19: --EXPECTF--
                     20: 
                     21: Warning: gztell() expects exactly 1 parameter, 2 given in %s on line %d
                     22: bool(false)
                     23: 
                     24: Warning: gztell() expects exactly 1 parameter, 0 given in %s on line %d
                     25: bool(false)
                     26: ===DONE===

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