X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F20mros.t;h=0d3f3d9d7b89df256b414901e6a6b76152e46b80;hb=221173f0c91dfd617cd68b09adf5f24da73bfa1a;hp=702b19d4b030f3052e729d52d76a28d1a61ff5dc;hpb=763002b367ca10e928cb5fcd7e1f83f957b37cd8;p=gitmo%2FMRO-Compat.git diff --git a/t/20mros.t b/t/20mros.t index 702b19d..0d3f3d9 100644 --- a/t/20mros.t +++ b/t/20mros.t @@ -40,7 +40,10 @@ is_deeply( "get_linear_isa for GGG3", ); -is(FFF3->testsub(), 'FFF3_first_in_dfs', 'dfs resolution pre-init'); +SKIP: { + skip "Does not work like this on 5.9.5+", 1 if $] > 5.009_004; + is(FFF3->testsub(), 'FFF3_first_in_dfs', 'dfs resolution pre-init'); +} Class::C3::initialize();