diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2010-06-30 10:06:53 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2010-06-30 11:23:41 +0100 |
commit | e8796d6170725d5ff0da29c2e9a96dd0d7456694 (patch) | |
tree | 2c9c9b4a5216d8fe7faa4ad88738561f1be2517f /cpan/IO-Compress/t/cz-14gzopen.t | |
parent | 9e09409a8eb5c132fdad60484f1ae39ebd8b4e32 (diff) | |
download | perl-e8796d6170725d5ff0da29c2e9a96dd0d7456694.tar.gz |
Update IO-Compress to CPAN version 2.027
[DELTA]
2.027 24 April 2010
* Compress::Zlib
Remove autoload code from Zlib.pm.
[perl #74088]
2.026 7 April 2010
* IO::Uncompress::Zip
- Some updates to IO::Compress::Zip documentation.
- Fixed default setting for ExtAttr.
2.025 27 March 2010
* IO::Uncompress::Unzip
The "Name" option wasn't documented.
* Allow zlib version check to be disabled by setting
TEST_SKIP_VERSION_CHECK environment variable.
[RT #54510]
2.024 7 January 2010
* Compress::Zlib
Get memGunzip & memGzip to set $gzerrno
[RT# 47283]
* Compress::Zlib
Export memGunzip, memGzip and zlib_version on demand
[RT# 52992]
* examples/io/anycat
This sample was using IO::Uncompress::AnyInflate. Much better to
use IO::Uncompress::AnyUncompress.
2.023 9 November 2009
* IO::Compress::AnyUncompress
Added support for lzma_alone & xz.
2.022 9 October 2009
* IO::Compress - Makefile.PL
Fix for core.
Diffstat (limited to 'cpan/IO-Compress/t/cz-14gzopen.t')
-rw-r--r-- | cpan/IO-Compress/t/cz-14gzopen.t | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/cpan/IO-Compress/t/cz-14gzopen.t b/cpan/IO-Compress/t/cz-14gzopen.t index e876143b29..fa05a9f8eb 100644 --- a/cpan/IO-Compress/t/cz-14gzopen.t +++ b/cpan/IO-Compress/t/cz-14gzopen.t @@ -27,9 +27,13 @@ BEGIN { } { - # Check zlib_version and ZLIB_VERSION are the same. - is Compress::Zlib::zlib_version, ZLIB_VERSION, - "ZLIB_VERSION matches Compress::Zlib::zlib_version" ; + SKIP: { + skip "TEST_SKIP_VERSION_CHECK is set", 1 + if $ENV{TEST_SKIP_VERSION_CHECK}; + # Check zlib_version and ZLIB_VERSION are the same. + is Compress::Zlib::zlib_version, ZLIB_VERSION, + "ZLIB_VERSION matches Compress::Zlib::zlib_version" ; + } } { |