diff options
author | Karl Williamson <khw@cpan.org> | 2015-08-18 19:49:02 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-08-25 16:58:01 -0600 |
commit | 2890b6e4f939b25ff5a7d8f0778bde87ac9e86db (patch) | |
tree | 7844146c7ca20262c69d4ca6dfb860671dd9d4f3 | |
parent | 83bcbc6111ed334f239986aa6a0f00a47b523a0c (diff) | |
download | perl-2890b6e4f939b25ff5a7d8f0778bde87ac9e86db.tar.gz |
op/chr.t: Better skip message
-rw-r--r-- | t/op/chr.t | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/t/op/chr.t b/t/op/chr.t index b909c90952..5f57bad69f 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 |