XS-APItest/t/handy.t: Turn off non_unicode warnings
authorKarl Williamson <public@khwilliamson.com>
Thu, 29 Nov 2012 03:40:12 +0000 (20:40 -0700)
committerKarl Williamson <public@khwilliamson.com>
Thu, 29 Nov 2012 15:59:02 +0000 (08:59 -0700)
Tests here use above-Unicode code points, so the warnings these might
otherwise generate should be forced off.

ext/XS-APItest/t/handy.t

index 9433409..d6c8df6 100644 (file)
@@ -59,6 +59,7 @@ foreach my $name (sort keys %properties) {
 
     # And finally one non-Unicode code point.
     push @code_points, 0x110000;    # Above Unicode, no prop should match
+    no warnings 'non_unicode';
 
     for my $i (@code_points) {
         my $function = uc($name);