1BEGIN { 2 if ($ENV{PERL_CORE}) { 3 chdir 't' if -d 't'; 4 @INC = ("../lib", "lib/compress"); 5 } 6} 7 8use lib qw(t t/compress); 9use strict; 10use warnings; 11use bytes; 12 13use IO::Compress::Deflate qw($DeflateError) ; 14use IO::Uncompress::Inflate qw($InflateError) ; 15 16sub identify 17{ 18 'IO::Compress::Deflate'; 19} 20 21require "generic.pl" ; 22run(); 23