]> git.vpit.fr Git - perl/modules/Lexical-Types.git/commitdiff
Skip the hint entry vivification test on 5.11
authorVincent Pit <vince@profvince.com>
Sun, 4 Sep 2011 16:01:30 +0000 (18:01 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 4 Sep 2011 16:01:30 +0000 (18:01 +0200)
It fails the same way even when indirect is not loaded.

t/18-hints.t

index 2b0886cdc09e8f08517bfad261e669aa93a8a8fc..46a6b7f70f1b950e460f719f8e0d4ec986a14476 100644 (file)
@@ -5,7 +5,9 @@ use warnings;
 
 use Test::More tests => 2;
 
-{
+SKIP: {
+ skip 'This fails on perl 5.11.x even without using indirect' => 2
+                                              if "$]" >= 5.011 and "$]" < 5.012;
  local %^H = (a => 1);
 
  require Lexical::Types;