From: Vincent Pit Date: Sun, 4 Sep 2011 15:11:52 +0000 (+0200) Subject: Skip the hint entry vivification test on 5.11 X-Git-Tag: rt70618^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=927b72cf6262313dcb7b292dc925790d4b6ddd03 Skip the hint entry vivification test on 5.11 It fails the same way even when indirect is not loaded. This fixes RT #70618. --- diff --git a/t/31-hints.t b/t/31-hints.t index 3dd8548..83aab1b 100644 --- a/t/31-hints.t +++ b/t/31-hints.t @@ -5,7 +5,9 @@ use warnings; use Test::More tests => 1; -{ +SKIP: { + skip 'This fails on perl 5.11.x even without using indirect' => 1 + if "$]" >= 5.011 and "$]" < 5.012; local %^H = (a => 1); require indirect;