From: Vincent Pit Date: Sun, 4 Sep 2011 16:01:30 +0000 (+0200) Subject: Skip the hint entry vivification test on 5.11 X-Git-Tag: v0.13~40 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=0e7e4b814d40a153e69a1910e3316361a631d1b5 Skip the hint entry vivification test on 5.11 It fails the same way even when indirect is not loaded. --- diff --git a/t/18-hints.t b/t/18-hints.t index 2b0886c..46a6b7f 100644 --- a/t/18-hints.t +++ b/t/18-hints.t @@ -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;