summaryrefslogtreecommitdiff
path: root/ext/XS-APItest
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2021-12-16 14:30:36 -0700
committerKarl Williamson <khw@cpan.org>2021-12-28 07:58:11 -0700
commit3c2b2fcba1af380e364ca5be1cd42495caf25e89 (patch)
tree0c0c5e01175c78f8ec62c8fda0e3e87fae3311d5 /ext/XS-APItest
parent2c9cc169c7a3a605ffcc50c843807bbb3f7e3a75 (diff)
downloadperl-3c2b2fcba1af380e364ca5be1cd42495caf25e89.tar.gz
Change pack U behavior for EBCDIC
This effectively reverts 3ece276e6c0. It turns out this was a bad idea to make U mean the non-native official Unicode code points. It may seem to make sense to do so, but broke multiple CPAN modules which were using U the previous way. This commit has no effect on ASCII-platform functioning.
Diffstat (limited to 'ext/XS-APItest')
-rw-r--r--ext/XS-APItest/t/utf16_to_utf8.t2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/XS-APItest/t/utf16_to_utf8.t b/ext/XS-APItest/t/utf16_to_utf8.t
index 612b146104..4cc63e18e3 100644
--- a/ext/XS-APItest/t/utf16_to_utf8.t
+++ b/ext/XS-APItest/t/utf16_to_utf8.t
@@ -4,8 +4,6 @@ use strict;
use Test::More;
use Encode;
-plan skip_all => 'Unclear how EBCIDC should behave' if ord "A" != 65;
-
# Bug in Encode, non chars are rejected
use XS::APItest qw(utf16_to_utf8 utf16_to_utf8_reversed
utf8_to_utf16 utf8_to_utf16_reversed);