php-src/ext/zlib/tests
Anatol Belski 3d3f11ede4 Fixed the UTF-8 and long path support in the streams on Windows.
Since long the default PHP charset is UTF-8, however the Windows part is
out of step with this important point. The current implementation in PHP
doesn't technically permit to handle UTF-8 filepath and several other
things. Till now, only the ANSI compatible APIs are being used. Here is more
about it

https://msdn.microsoft.com/en-us/library/windows/desktop/dd317752%28v=vs.85%29.aspx

The patch fixes not only issues with multibyte filenames under
incompatible codepages, but indirectly also issues with some other multibyte
encodings like BIG5, Shift-JIS, etc. by providing a clean way to access
filenames in UTF-8. Below is a small list of issues from the bug tracker,
that are getting fixed:

https://bugs.php.net/63401
https://bugs.php.net/41199
https://bugs.php.net/50203
https://bugs.php.net/71509
https://bugs.php.net/64699
https://bugs.php.net/64506
https://bugs.php.net/30195
https://bugs.php.net/65358
https://bugs.php.net/61315
https://bugs.php.net/70943
https://bugs.php.net/70903
https://bugs.php.net/63593
https://bugs.php.net/54977
https://bugs.php.net/54028
https://bugs.php.net/43148
https://bugs.php.net/30730
https://bugs.php.net/33350
https://bugs.php.net/35300
https://bugs.php.net/46990
https://bugs.php.net/61309
https://bugs.php.net/69333
https://bugs.php.net/45517
https://bugs.php.net/70551
https://bugs.php.net/50197
https://bugs.php.net/72200
https://bugs.php.net/37672

Yet more related tickets can for sure be found - on bugs.php.net, Stackoverflow
and Github. Some of the bugs are pretty recent, some descend to early
2000th, but  the user comments in there last even till today. Just for example,
bug #30195 was opened in 2004, the latest comment in there was made in 2014. It
is certain, that these bugs descend not only to pure PHP use cases, but get also
redirected from the popular PHP based projects. Given the modern systems (and
those supported by PHP) are always based on NTFS, there is no excuse to keep
these issues unresolved.

The internalization approach on Windows is in many ways different from
UNIX and Linux, while it supports and is based on Unicode. It depends on the
current system code page, APIs used and exact kind how the binary was compiled
The locale doesn't affect the way Unicode or ANSI API work. PHP in particular
is being compiled without _UNICODE defined and this is conditioned by the
way we handle strings. Here is more about it

https://msdn.microsoft.com/en-us/library/tsbaswba.aspx

However, with any system code page ANSI functions automatically convert
paths to UTF-16. Paths in some encodings incompatible with the
current system code page, won't work correctly with ANSI APIs. PHP
till now only uses the ANSI Windows APIs.

For example, on a system with the current code page 1252, the paths
in cp1252 are supported and transparently converted to UTF-16 by the
ANSI functions. Once one wants to handle a filepath encoded with cp932 on
that particular system, an ANSI or a POSIX compatible function used in
PHP will produce an erroneous result. When trying to convert that cp932 path
to UTF-8 and passing to the ANSI functions, an ANSI function would
likely interpret the UTF-8 string as some string in the current code page and
create a filepath that represents every single byte of the UTF-8 string.
These behaviors are not only broken but also disregard the documented
INI settings.

This patch solves the issies with the multibyte paths on Windows by
intelligently enforcing the usage of the Unicode aware APIs. For
functions expect Unicode (fe CreateFileW, FindFirstFileW, etc.), arguments
will be converted to UTF-16 wide chars. For functions returning Unicode
aware data (fe GetCurrentDirectoryW, etc.), resulting wide string is
converted back to char's depending on the current PHP charset settings,
either to the current ANSI codepage (this is the behavior prior to this patch)
or to UTF-8 (the default behavior).

In a particular case, users might have to explicitly set
internal_encoding or default_charset, if filenames in ANSI codepage are
necessary. Current tests show no regressions and witness that this will be an
exotic case, the current default UTF-8 encoding is compatible with any
supported system. The dependency libraries are long switching to Unicode APIs,
so some tests were also added for extensions not directly related to streams.
At large, the patch brings over 150 related tests into the core. Those target
and was run on various environments with European, Asian, etc. codepages.
General PHP frameworks was tested and showed no regressions.

The impact on the current C code base is low, the most places affected
are the Windows only places in the three files tsrm_win32.c, zend_virtual_cwd.c
and plain_wrapper.c. The actual implementation of the most of the wide
char supporting functionality is in win32/ioutil.* and win32/codepage.*,
several  low level functionsare extended in place to avoid reimplementation for
now. No performance impact was sighted. As previously mentioned, the ANSI APIs
used prior the patch perform Unicode conversions internally. Using the
Unicode  APIs directly while doing custom conversions just retains the status
quo. The ways to optimize it are open (fe. by implementing caching for the
strings converted to wide variants).

The long path implementation is user transparent. If a path exceeds the
length of _MAX_PATH, it'll be automatically prefixed with \\?\. The MAXPATHLEN
is set to 2048 bytes.

Appreciation to Pierre Joye, Matt Ficken, @algo13 and others for tips, ideas
and testing.

Thanks.
2016-06-20 12:45:39 +02:00
..
001.phpt - force LF and fix... and blame me for not reading the code correctly, zlib tests pass now, linux/bsd/win 100% 2011-09-08 10:20:38 +00:00
002.phpt - Remove unused blocks 2004-05-19 08:45:46 +00:00
003.phpt Fix test (gzdecode not valid in 5.3 branch, maybe need add ? ) 2011-09-13 13:18:57 +00:00
004-mb.phpt Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
004.phpt - remove magic quotes support, functions are kept (see the NEWS entry for the details) for BC reasons but do not allow to set enable MQ, missing tests changes in 5.4 2011-07-22 11:56:20 +00:00
004.txt.gz add new tests 2006-06-26 23:35:22 +00:00
004私はガラスを食べられます.txt.gz Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
005.phpt - Reverted r296062 and r296065 2010-03-12 10:28:59 +00:00
006.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
007.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
008.phpt MFB52: Fix "request_startup() for zlib module failed" when client does not 2009-05-28 10:15:14 +00:00
bug51269.phpt Fixed bug #51269 (zlib.output_compression Overwrites Vary Header). 2010-03-11 06:20:22 +00:00
bug55544-win.phpt forked two tests for windows 2012-09-03 13:37:34 +02:00
bug55544.phpt forked two tests for windows 2012-09-03 13:37:34 +02:00
bug60761.phpt Merge branch '5.3' into 5.4 2012-03-27 18:16:02 +02:00
bug61139.phpt Merge branch 'pull-request/320' 2013-06-17 01:06:20 -07:00
bug61287.phpt MFH: Fixed bug #61287 (A particular string fails to decompress) 2012-03-05 15:38:24 +00:00
bug61443.phpt fix bug #61443 2012-04-24 20:35:49 +02:00
bug61820.phpt fixed bug #61820 2012-04-24 19:50:00 +02:00
bug65391.phpt Test output relies on expose_php being on 2014-07-14 07:21:11 -07:00
bug67724.gz.gz Fixed Bug #67724 2014-08-05 15:44:43 +02:00
bug67724.phpt Fixed Bug #67724 2014-08-05 15:44:43 +02:00
bug_34821.phpt reduce the test data size even further or when running with valgrind it times out 2007-01-03 22:32:49 +00:00
bug_40189.phpt Fixed test 2010-01-19 12:42:50 +00:00
bug_52944_corrupted_data.inc fixed test for bug #52944 also for darwin 2012-09-09 23:02:50 +02:00
bug_52944.phpt the darwin specific test fails for me with the same output which is the expected for the original test 2014-11-27 00:08:40 +01:00
compress_zlib_wrapper.phpt Fixed test 2007-06-18 10:02:12 +00:00
data.inc - force LF 2011-09-08 10:14:38 +00:00
deflate_add_basic.phpt Improve ZBLOCK handling with zlib < 1.2.4 2015-05-07 10:31:41 -04:00
deflate_add_block_v123.phpt Improve ZBLOCK handling with zlib < 1.2.4 2015-05-07 10:31:41 -04:00
deflate_add_error.phpt Add deflate_*() test cases 2015-04-23 23:49:41 -06:00
deflate_init_error.phpt Add deflate_*() test cases 2015-04-23 23:49:41 -06:00
deflate_init_reuse.phpt Add deflate_*() test cases 2015-04-23 23:49:41 -06:00
dictionary_usage.phpt Add support for string dictionaries, fix array dictionaries ({de,in}flate) 2015-05-21 04:17:17 +02:00
func.inc split gzgetc_basic.phpt for zlib 1.2.7 2012-06-19 14:08:34 +02:00
gzclose_basic.phpt Refactor zlib (all tests pass) 2014-05-05 15:52:09 +08:00
gzclose_error.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzcompress_basic1.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
gzcompress_error1.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
gzcompress_variation1.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
gzdeflate_basic1.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
gzdeflate_error1.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
gzdeflate_variation1.phpt - Reverted r296062 and r296065 2010-03-12 10:28:59 +00:00
gzencode_basic1.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
gzencode_error1.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
gzencode_variation1-win32.phpt Fix bug 61680 ext\zlib\tests\gzencode_variation1-win32.phpt fails 2012-04-16 14:04:29 +02:00
gzencode_variation1.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
gzencode_variation2-win32.phpt remove XFAIL for bug #47178 2012-01-18 10:16:37 +00:00
gzencode_variation2.phpt remove XFAIL for bug #47178 2012-01-18 10:16:37 +00:00
gzeof_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzeof_error.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzeof_variation1.phpt Refactor zlib (all tests pass) 2014-05-05 15:52:09 +08:00
gzfile_basic2.phpt fix many parallel test issues 2013-11-06 10:31:47 +01:00
gzfile_basic.phpt fix many parallel test issues 2013-11-06 10:31:47 +01:00
gzfile_error.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzfile_variation1.phpt typo fixes (argument) 2013-06-10 13:36:17 -07:00
gzfile_variation2.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
gzfile_variation3.phpt typo fixes (argument) 2013-06-10 13:36:17 -07:00
gzfile_variation4.phpt Correct two zlib tests to use a string, not a const 2014-11-23 17:12:37 -08:00
gzfile_variation5.phpt typo fixes (argument) 2013-06-10 13:36:17 -07:00
gzfile_variation6.phpt typo fixes (argument) 2013-06-10 13:36:17 -07:00
gzfile_variation7.phpt typo fixes (argument) 2013-06-10 13:36:17 -07:00
gzfile_variation8.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
gzfile_variation9.phpt typo fixes (argument) 2013-06-10 13:36:17 -07:00
gzfile_variation10.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
gzfile_variation11.phpt Updated or skipped certain 32-bit tests 2014-12-17 01:06:48 +00:00
gzfile_variation12.phpt typo fixes (argument) 2013-06-10 13:36:17 -07:00
gzfile_variation13.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
gzfile_variation14.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
gzfile_variation15.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzfilegzreadfile.phpt fix test portability 2016-06-13 15:47:08 +02:00
gzgetc_basic_1.phpt split gzgetc_basic.phpt for zlib 1.2.7 2012-06-19 14:08:34 +02:00
gzgetc_basic.phpt split gzgetc_basic.phpt for zlib 1.2.7 2012-06-19 14:08:34 +02:00
gzgetc_error.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzgets_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzgets_error.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzgetss.gz added test for gzgetss() 2015-08-23 17:55:23 +02:00
gzgetss.phpt added test for gzgetss() 2015-08-23 17:55:23 +02:00
gzgetss.test added test for gzgetss() 2015-08-23 17:55:23 +02:00
gzinflate_error1.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
gzinflate_length.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
gzinflate-bug42663.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
gzopen_basic2.phpt fix many parallel test issues 2013-11-06 10:31:47 +01:00
gzopen_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzopen_error.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzopen_include_path.inc new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzopen_variation1.phpt Fix tests 2015-04-12 20:55:35 -07:00
gzopen_variation2.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzopen_variation3.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
gzopen_variation4.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzopen_variation5.phpt - Reverted r296062 and r296065 2010-03-12 10:28:59 +00:00
gzopen_variation6.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzopen_variation7.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzopen_variation8.phpt - Reverted r296062 and r296065 2010-03-12 10:28:59 +00:00
gzopen_variation9.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
gzpassthru_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzpassthru_error.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzputs_basic.phpt fix many parallel test issues 2013-11-06 10:31:47 +01:00
gzread_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzread_error2.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzread_error.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzread_variation1.phpt fix many parallel test issues 2013-11-06 10:31:47 +01:00
gzreadgzwrite.phpt fix test portability 2016-06-13 15:47:08 +02:00
gzreadgzwriteplain.phpt fix test portability 2016-06-13 15:47:08 +02:00
gzrewind_basic2.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzrewind_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzrewind_error.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzrewind_variation1.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzseek_basic2.phpt Merge branch 'PHP-5.5' into PHP-5.6 2014-06-08 13:53:01 -07:00
gzseek_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzseek_error.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzseek_variation1.phpt Merge branch 'PHP-5.5' into PHP-5.6 2014-06-08 13:53:01 -07:00
gzseek_variation2.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzseek_variation3.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzseek_variation4.phpt Merge branch 'PHP-5.5' into PHP-5.6 2014-06-08 13:53:01 -07:00
gzseek_variation5.phpt Merge branch 'PHP-5.5' into PHP-5.6 2014-06-08 13:53:01 -07:00
gzseek_variation6.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
gzseek_variation7.phpt Fix zlib/tests/gzseek to create unique temporary files 2013-04-24 01:06:55 -07:00
gztell_basic2.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gztell_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gztell_error.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
gzuncompress_basic1.phpt - Reverted r296062 and r296065 2010-03-12 10:28:59 +00:00
gzuncompress_error1.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
gzwrite_basic.phpt fix many parallel test issues 2013-11-06 10:31:47 +01:00
gzwrite_error2.phpt fix many parallel test issues 2013-11-06 10:31:47 +01:00
gzwrite_error.phpt fix many parallel test issues 2013-11-06 10:31:47 +01:00
gzwrite_variation1.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
inflate_add_basic.phpt Improve ZBLOCK handling with zlib < 1.2.4 2015-05-07 10:31:41 -04:00
inflate_add_error.phpt Add inflate_*() test cases 2015-04-23 23:50:59 -06:00
inflate_init_error.phpt Fix unrelated tests and zlib window size 2015-05-15 13:59:47 +02:00
inflate_init_reuse.phpt Add inflate_*() test cases 2015-04-23 23:50:59 -06:00
ob_001.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
ob_002.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
ob_003.phpt fix tests 2011-08-31 04:24:48 +00:00
ob_004.phpt fix tests 2011-08-31 04:24:48 +00:00
ob_005.phpt fix tests 2011-08-31 04:24:48 +00:00
ob_gzhandler_legacy_002.phpt add test for ob_gzhandler 2012-01-01 23:51:21 +00:00
readgzfile_basic2.phpt fix many parallel test issues 2013-11-06 10:31:47 +01:00
readgzfile_basic.phpt fix many parallel test issues 2013-11-06 10:31:47 +01:00
readgzfile_error.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
readgzfile_variation1.phpt Fix tests 2015-04-12 20:55:35 -07:00
readgzfile_variation2.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
readgzfile_variation3.phpt typo fixes (argument) 2013-06-10 13:36:17 -07:00
readgzfile_variation4.phpt Correct two zlib tests to use a string, not a const 2014-11-23 17:12:37 -08:00
readgzfile_variation5.phpt typo fixes (argument) 2013-06-10 13:36:17 -07:00
readgzfile_variation6.phpt Fix tests 2015-04-12 20:55:35 -07:00
readgzfile_variation7.phpt typo fixes (argument) 2013-06-10 13:36:17 -07:00
readgzfile_variation8.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
readgzfile_variation9.phpt typo fixes (argument) 2013-06-10 13:36:17 -07:00
readgzfile_variation10.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
readgzfile_variation11.phpt Updated or skipped certain 32-bit tests 2014-12-17 01:06:48 +00:00
readgzfile_variation12.phpt typo fixes (argument) 2013-06-10 13:36:17 -07:00
readgzfile_variation13.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
readgzfile_variation14.phpt Use "float" and "integer" in typehint and zpp errors 2014-12-21 13:23:02 +00:00
readgzfile_variation15.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
reading_include_path.inc new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
zlib_filter_deflate2.phpt - Fixed zlib.deflate compress filter to actually accpet level parameter. 2009-08-31 21:18:55 +00:00
zlib_filter_deflate.phpt MFH (r-1.2) Sync tests with new defaults 2005-11-24 04:37:47 +00:00
zlib_filter_inflate2.phpt * implement new output API, fixing some bugs and implementing some feature 2010-05-31 10:29:43 +00:00
zlib_filter_inflate.phpt MFH (r-1.2) Sync tests with new defaults 2005-11-24 04:37:47 +00:00
zlib_scheme_copy_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
zlib_scheme_copy_variation1.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
zlib_scheme_copy_variation2.phpt - Reverted r296062 and r296065 2010-03-12 10:28:59 +00:00
zlib_scheme_dir_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
zlib_scheme_file_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
zlib_scheme_file_get_contents_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
zlib_scheme_file_put_contents_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
zlib_scheme_file_read_file_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
zlib_scheme_fopen_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
zlib_scheme_fopen_variation1.phpt final collection of zlib tests. tested on linux, windows and linux 64 bit 2009-01-22 14:14:50 +00:00
zlib_scheme_rename_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
zlib_scheme_stat_basic2.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
zlib_scheme_stat_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
zlib_scheme_unlink_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-21 15:24:13 +00:00
zlib_wrapper_fflush_basic.phpt fix many parallel test issues 2013-11-06 10:31:47 +01:00
zlib_wrapper_flock_basic.phpt new tests for zlib extension, tested on windows, linux and linux64 2009-01-19 14:03:08 +00:00
zlib_wrapper_fstat_basic.phpt final collection of zlib tests. tested on linux, windows and linux 64 bit 2009-01-22 14:14:50 +00:00
zlib_wrapper_ftruncate_basic.phpt fix many parallel test issues 2013-11-06 10:31:47 +01:00
zlib_wrapper_meta_data_basic.phpt fix tests 2016-02-01 18:58:02 -08:00