blob: e760fded403d5a63eb906c17996a1d94174b7bd8 [file] [log] [blame]
require IO::Zlib; # uncomp2.t is like uncomp1.t but without 'use'
sub ok
{
my ($no, $ok) = @_ ;
#++ $total ;
#++ $totalBad unless $ok ;
print "ok $no\n" if $ok ;
print "not ok $no\n" unless $ok ;
}
print "1..10\n";
$hello = <<EOM ;
hello world
this is a test
EOM
$name = "test$$";
if (open(FH, ">$name")) {
binmode FH;
print FH $hello;
close FH;
} else {
die "$name: $!";
}
ok(1, $file = IO::Zlib->new());
ok(2, $file->open($name, "rb"));
ok(3, !$file->eof());
ok(4, $file->read($uncomp, 1024) == length($hello));
ok(5, $file->eof());
ok(6, $file->opened());
ok(7, $file->close());
ok(8, !$file->opened());
unlink($name);
ok(9, $hello eq $uncomp);
ok(10, !defined(IO::Zlib->new($name, "rb")));