From 2c671b28e4c6a188fba5ef17f8d8c43953dbd366 Mon Sep 17 00:00:00 2001 From: Mark Pulford Date: Thu, 25 Aug 2016 20:47:39 +1000 Subject: Suppress test data generation warnings Modern versions of Perl generate warnings, but the unit tests are currently designed to also test against the invalid UTF-8 characters. --- tests/genutf8.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/genutf8.pl b/tests/genutf8.pl index db661a1..c79f238 100755 --- a/tests/genutf8.pl +++ b/tests/genutf8.pl @@ -6,6 +6,7 @@ # cff03b039d850f370a7362f3313e5268 use strict; +no warnings 'nonchar'; # 0xD800 - 0xDFFF are used to encode supplementary codepoints # 0x10000 - 0x10FFFF are supplementary codepoints -- cgit v1.2.3