# HG changeset patch # User Sergey Kandaurov # Date 1446743221 -10800 # Node ID cbd26265d9a35d540f332fbb83c617e825b072c8 # Parent 3fc382902cba152126bd87e78a014c8de6b52cf1 Tests: reverted adc32621fb09. diff --git a/gunzip.t b/gunzip.t --- a/gunzip.t +++ b/gunzip.t @@ -23,7 +23,6 @@ select STDOUT; $| = 1; eval { require IO::Compress::Gzip; }; plan(skip_all => "IO::Compress::Gzip not found") if $@; -plan(skip_all => "IO::Compress::Gzip on win32") if $^O eq 'MSWin32'; my $t = Test::Nginx->new()->has(qw/http gunzip proxy gzip_static rewrite/) ->plan(13); diff --git a/gunzip_memcached.t b/gunzip_memcached.t --- a/gunzip_memcached.t +++ b/gunzip_memcached.t @@ -26,7 +26,6 @@ plan(skip_all => 'Cache::Memcached not i eval { require IO::Compress::Gzip; }; plan(skip_all => "IO::Compress::Gzip not found") if $@; -plan(skip_all => "IO::Compress::Gzip on win32") if $^O eq 'MSWin32'; my $t = Test::Nginx->new()->has(qw/http gunzip memcached rewrite/) ->has_daemon('memcached') diff --git a/gunzip_perl.t b/gunzip_perl.t --- a/gunzip_perl.t +++ b/gunzip_perl.t @@ -23,7 +23,6 @@ select STDOUT; $| = 1; eval { require IO::Compress::Gzip; }; plan(skip_all => "IO::Compress::Gzip not found") if $@; -plan(skip_all => "IO::Compress::Gzip on win32") if $^O eq 'MSWin32'; my $t = Test::Nginx->new()->has(qw/http gunzip perl/)->plan(2) ->write_file_expand('nginx.conf', <<'EOF'); diff --git a/gunzip_ssi.t b/gunzip_ssi.t --- a/gunzip_ssi.t +++ b/gunzip_ssi.t @@ -23,7 +23,6 @@ select STDOUT; $| = 1; eval { require IO::Compress::Gzip; }; plan(skip_all => "IO::Compress::Gzip not found") if $@; -plan(skip_all => "IO::Compress::Gzip on win32") if $^O eq 'MSWin32'; my $t = Test::Nginx->new()->has(qw/http gunzip ssi proxy gzip_static/) ->plan(4); diff --git a/gunzip_static.t b/gunzip_static.t --- a/gunzip_static.t +++ b/gunzip_static.t @@ -24,7 +24,6 @@ select STDOUT; $| = 1; eval { require IO::Compress::Gzip; }; plan(skip_all => "IO::Compress::Gzip not found") if $@; -plan(skip_all => "IO::Compress::Gzip on win32") if $^O eq 'MSWin32'; my $t = Test::Nginx->new()->has(qw/http gunzip proxy gzip_static rewrite/); diff --git a/lib/Test/Nginx.pm b/lib/Test/Nginx.pm --- a/lib/Test/Nginx.pm +++ b/lib/Test/Nginx.pm @@ -641,9 +641,6 @@ sub http_gzip_like { eval { require IO::Uncompress::Gunzip; }; Test::More::skip( "IO::Uncompress::Gunzip not installed", 1) if $@; - Test::More::skip( - "IO::Uncompress::Gunzip on win32", 1) - if $^O eq 'MSWin32'; my $in = http_content($text); my $out; diff --git a/perl_gzip.t b/perl_gzip.t --- a/perl_gzip.t +++ b/perl_gzip.t @@ -23,7 +23,6 @@ select STDOUT; $| = 1; eval { require IO::Compress::Gzip; }; plan(skip_all => "IO::Compress::Gzip not found") if $@; -plan(skip_all => "IO::Compress::Gzip on win32") if $^O eq 'MSWin32'; my $t = Test::Nginx->new()->has(qw/http perl gzip/)->plan(2) ->write_file_expand('nginx.conf', <<'EOF');