diff options
author | Dave Kelsey <dkelsey@php.net> | 2009-01-19 14:03:19 (GMT) |
---|---|---|
committer | Dave Kelsey <dkelsey@php.net> | 2009-01-19 14:03:19 (GMT) |
commit | fc4a0d3886c6e47472142be9740a745cc1c2046d (patch) | |
tree | 7c56b34ac4dbc99e9cd195bbf22ee0f5619a9ecf /ext/zlib/tests/gzfile_variation4.phpt | |
parent | 9ea96c467a09c9439c434d087e5127489dd28388 (diff) | |
download | php-fc4a0d3886c6e47472142be9740a745cc1c2046d.tar.gz |
new tests for zlib extension, tested on windows, linux and linux64
Diffstat (limited to 'ext/zlib/tests/gzfile_variation4.phpt')
-rw-r--r-- | ext/zlib/tests/gzfile_variation4.phpt | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/ext/zlib/tests/gzfile_variation4.phpt b/ext/zlib/tests/gzfile_variation4.phpt new file mode 100644 index 0000000..b3c8ac4 --- /dev/null +++ b/ext/zlib/tests/gzfile_variation4.phpt @@ -0,0 +1,43 @@ +--TEST-- +Test function gzfile() by substituting agument 1 with float values. +--SKIPIF-- +<?php +if (!extension_loaded(zlib)) die ('skip zlib extension not available in this build'); +?> +--FILE-- +<?php + + +$use_include_path = false; + + +$variation = array( + 'float 10.5' => 10.5, + 'float -10.5' => -10.5, + 'float 12.3456789000e10' => 12.3456789000e10, + 'float -12.3456789000e10' => -12.3456789000e10, + 'float .5' => .5, + ); + + +foreach ( $variation as $var ) { + var_dump(gzfile( $var , $use_include_path ) ); +} +?> +===DONE=== +--EXPECTF-- +Warning: gzfile(10.5): failed to open stream: No such file or directory in %s on line %d +bool(false) + +Warning: gzfile(-10.5): failed to open stream: No such file or directory in %s on line %d +bool(false) + +Warning: gzfile(123456789000): failed to open stream: No such file or directory in %s on line %d +bool(false) + +Warning: gzfile(-123456789000): failed to open stream: No such file or directory in %s on line %d +bool(false) + +Warning: gzfile(0.5): failed to open stream: No such file or directory in %s on line %d +bool(false) +===DONE=== |