diff options
Diffstat (limited to 'lib')
-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/ || |