From: Tony Cook Date: Wed, 3 Apr 2013 12:27:57 +0000 (+1100) Subject: skip testing UTF-8 overloaded test on pre-5.8 X-Git-Tag: v0.94_02~3 X-Git-Url: http://git.imager.perl.org/imager.git/commitdiff_plain/63cfb2672f1e5291b1414c06f576a99575fed24f skip testing UTF-8 overloaded test on pre-5.8 since it was fixed in 5.8 --- diff --git a/lib/Imager/Test.pm b/lib/Imager/Test.pm index 586a937a..402223c4 100644 --- a/lib/Imager/Test.pm +++ b/lib/Imager/Test.pm @@ -753,8 +753,10 @@ sub std_font_tests { SKIP: { # check magic is handled correctly # https://rt.cpan.org/Ticket/Display.html?id=83438 - skip("no native UTF8 support in this version of perl", 10) + skip("no native UTF8 support in this version of perl", 11) unless $] >= 5.006; + skip("overloading handling of magic is broken in this version of perl", 11) + unless $] >= 5.008; Imager->log("utf8 magic tests\n"); my $over = bless {}, "Imager::Test::OverUtf8"; my $text = "A".chr(0x2010)."A";