diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-06-22 17:14:04 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-06-22 17:14:04 +0000 |
commit | 666e7e7967a0bc59b1f44ec2961661c439aad50c (patch) | |
tree | bbcd121b924051e3623c4b0b9e3da26ebf9a3286 | |
parent | 2aa47728aa947a41f1d2abaa0249b6e8da98653a (diff) | |
download | perl-666e7e7967a0bc59b1f44ec2961661c439aad50c.tar.gz |
Upgrade to Test::Harness 2.50
p4raw-id: //depot/perl@24941
-rw-r--r-- | lib/Test/Harness.pm | 4 | ||||
-rw-r--r-- | lib/Test/Harness/t/strap-analyze.t | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/Test/Harness.pm b/lib/Test/Harness.pm index 99abb0ceaa..07e612f4ea 100644 --- a/lib/Test/Harness.pm +++ b/lib/Test/Harness.pm @@ -34,11 +34,11 @@ Test::Harness - Run Perl standard test scripts with statistics =head1 VERSION -Version 2.49_02 +Version 2.50 =cut -$VERSION = "2.49_02"; +$VERSION = "2.50"; # Backwards compatibility for exportable variable names. *verbose = *Verbose; diff --git a/lib/Test/Harness/t/strap-analyze.t b/lib/Test/Harness/t/strap-analyze.t index e322df424d..5732b158a8 100644 --- a/lib/Test/Harness/t/strap-analyze.t +++ b/lib/Test/Harness/t/strap-analyze.t @@ -547,6 +547,8 @@ my %samples = ( plan tests => (keys(%samples) * 5) + 3; use Test::Harness::Straps; +my @_INC = map { qq{"-I$_"} } @INC; +$Test::Harness::Switches = "@_INC -Mstrict"; $SIG{__WARN__} = sub { warn @_ unless $_[0] =~ /^Enormous test number/ || |