diff options
Diffstat (limited to 'dist')
-rw-r--r-- | dist/autouse/lib/autouse.pm | 2 | ||||
-rw-r--r-- | dist/autouse/t/autouse.t | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/dist/autouse/lib/autouse.pm b/dist/autouse/lib/autouse.pm index 7061b7b29c..2dd8c1dbd7 100644 --- a/dist/autouse/lib/autouse.pm +++ b/dist/autouse/lib/autouse.pm @@ -3,7 +3,7 @@ package autouse; #use strict; # debugging only use 5.006; # use warnings -$autouse::VERSION = '1.10'; +$autouse::VERSION = '1.11'; $autouse::DEBUG ||= 0; diff --git a/dist/autouse/t/autouse.t b/dist/autouse/t/autouse.t index 74cad59194..a790403f0f 100644 --- a/dist/autouse/t/autouse.t +++ b/dist/autouse/t/autouse.t @@ -96,8 +96,7 @@ SKIP: { 'no redefinition warning when clobbering autouse stub via *a=\&b'; } SKIP: { - skip "Fails from 5.10 to 5.15.5 (perl bug)", 1 - if $] < 5.0150051 and $] > 5.0099; + skip "Fails in 5.15.5 and below (perl bug)", 1 if $] < 5.0150051; use Config; skip "no B", 1 unless $Config{extensions} =~ /\bB\b/; use warnings; local $^W = 1; no warnings 'once'; |