summaryrefslogtreecommitdiff
path: root/cpan/IO-Zlib
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-12-30 10:35:00 +0100
committerYves Orton <demerphq@gmail.com>2022-12-30 12:07:52 +0100
commitbaf13df2db6fda20ee3d047fca3646f6ec84e8fb (patch)
treed7bc13c26a096b76d261288e2741d4bc620b1735 /cpan/IO-Zlib
parentbffe71c76e8ed4603916cff0efda55d0fec14dcd (diff)
downloadperl-baf13df2db6fda20ee3d047fca3646f6ec84e8fb.tar.gz
Update IO-Zlib to v1.12 - fixed tests for parallelism
Diffstat (limited to 'cpan/IO-Zlib')
-rw-r--r--cpan/IO-Zlib/Zlib.pm2
-rw-r--r--cpan/IO-Zlib/t/basic.t2
-rw-r--r--cpan/IO-Zlib/t/external.t2
-rw-r--r--cpan/IO-Zlib/t/getc.t2
-rw-r--r--cpan/IO-Zlib/t/getline.t2
-rw-r--r--cpan/IO-Zlib/t/large.t2
-rw-r--r--cpan/IO-Zlib/t/tied.t2
-rw-r--r--cpan/IO-Zlib/t/uncomp1.t2
-rw-r--r--cpan/IO-Zlib/t/uncomp2.t2
9 files changed, 9 insertions, 9 deletions
diff --git a/cpan/IO-Zlib/Zlib.pm b/cpan/IO-Zlib/Zlib.pm
index 84aa5e428f..6f0a43f5aa 100644
--- a/cpan/IO-Zlib/Zlib.pm
+++ b/cpan/IO-Zlib/Zlib.pm
@@ -291,7 +291,7 @@ use Fcntl qw(SEEK_SET);
use Symbol;
use Tie::Handle;
-our $VERSION = "1.11";
+our $VERSION = "1.12";
our $AUTOLOAD;
our @ISA = qw(Tie::Handle);
diff --git a/cpan/IO-Zlib/t/basic.t b/cpan/IO-Zlib/t/basic.t
index c689a04335..b93f1cb546 100644
--- a/cpan/IO-Zlib/t/basic.t
+++ b/cpan/IO-Zlib/t/basic.t
@@ -10,7 +10,7 @@ sub ok
print "not ok $no\n" unless $ok ;
}
-my $name = "test.gz";
+my $name = "test_basic_$$.gz";
print "1..17\n";
diff --git a/cpan/IO-Zlib/t/external.t b/cpan/IO-Zlib/t/external.t
index 7a9988a084..a2764ef319 100644
--- a/cpan/IO-Zlib/t/external.t
+++ b/cpan/IO-Zlib/t/external.t
@@ -70,7 +70,7 @@ ok(14, $@ =~ /^IO::Zlib::gzopen_external: mode 'xyz' is illegal /);
# The following is a copy of the basic.t, shifted up by 14 tests,
# the difference being that now we should be using the external gzip.
-my $name="test.gz";
+my $name="test_external_$$.gz";
my $hello = <<EOM ;
hello world
diff --git a/cpan/IO-Zlib/t/getc.t b/cpan/IO-Zlib/t/getc.t
index 3181ace9f5..1dd0650deb 100644
--- a/cpan/IO-Zlib/t/getc.t
+++ b/cpan/IO-Zlib/t/getc.t
@@ -10,7 +10,7 @@ sub ok
print "not ok $no\n" unless $ok ;
}
-my $name = "test.gz";
+my $name = "test_getc_$$.gz";
print "1..10\n";
diff --git a/cpan/IO-Zlib/t/getline.t b/cpan/IO-Zlib/t/getline.t
index 6ba5b4760c..fcfd529e15 100644
--- a/cpan/IO-Zlib/t/getline.t
+++ b/cpan/IO-Zlib/t/getline.t
@@ -10,7 +10,7 @@ sub ok
print "not ok $no\n" unless $ok ;
}
-my $name = "test.gz";
+my $name = "test_getline_$$.gz";
print "1..23\n";
diff --git a/cpan/IO-Zlib/t/large.t b/cpan/IO-Zlib/t/large.t
index 25852df7e0..187c28f5b7 100644
--- a/cpan/IO-Zlib/t/large.t
+++ b/cpan/IO-Zlib/t/large.t
@@ -10,7 +10,7 @@ sub ok
print "not ok $no\n" unless $ok ;
}
-my $name = "test.gz";
+my $name = "test_large_$$.gz";
print "1..7\n";
diff --git a/cpan/IO-Zlib/t/tied.t b/cpan/IO-Zlib/t/tied.t
index 07f886140c..0694743cc7 100644
--- a/cpan/IO-Zlib/t/tied.t
+++ b/cpan/IO-Zlib/t/tied.t
@@ -10,7 +10,7 @@ sub ok
print "not ok $no\n" unless $ok ;
}
-my $name = "test.gz";
+my $name = "test_tied_$$.gz";
print "1..11\n";
diff --git a/cpan/IO-Zlib/t/uncomp1.t b/cpan/IO-Zlib/t/uncomp1.t
index 734b46c8cf..8663069dcd 100644
--- a/cpan/IO-Zlib/t/uncomp1.t
+++ b/cpan/IO-Zlib/t/uncomp1.t
@@ -17,7 +17,7 @@ hello world
this is a test
EOM
-my $name = "test$$";
+my $name = "test_uncomp1_$$";
if (open(FH, ">$name"))
{
diff --git a/cpan/IO-Zlib/t/uncomp2.t b/cpan/IO-Zlib/t/uncomp2.t
index 182b9625a7..e5448a6b72 100644
--- a/cpan/IO-Zlib/t/uncomp2.t
+++ b/cpan/IO-Zlib/t/uncomp2.t
@@ -17,7 +17,7 @@ hello world
this is a test
EOM
-my $name = "test$$";
+my $name = "test_uncomp2_$$";
if (open(FH, ">$name"))
{