From 2890b6e4f939b25ff5a7d8f0778bde87ac9e86db Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Tue, 18 Aug 2015 19:49:02 -0600 Subject: [PATCH] op/chr.t: Better skip message --- t/op/chr.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t/op/chr.t b/t/op/chr.t index b909c90..5f57bad 100644 --- a/t/op/chr.t +++ b/t/op/chr.t @@ -49,7 +49,9 @@ is chr "-2.2", chr -2.2, 'chr "-2.2" eq chr -2.2'; # Check UTF-8 (not UTF-EBCDIC). SKIP: { - skip "no UTF-8 on EBCDIC", 21 if $::IS_EBCDIC; + skip "ASCII centric tests", 21 if $::IS_EBCDIC; + # Too hard to convert these tests generically to EBCDIC code pages without + # using chr(), which is what we're testing. sub hexes { no warnings 'utf8'; # avoid surrogate and beyond Unicode warnings -- 1.8.3.1