diff options
author | Karl Williamson <khw@cpan.org> | 2014-11-27 22:35:07 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-03-14 22:59:44 -0600 |
commit | dae3349befa4da12591930c4991283a48b63d223 (patch) | |
tree | 34953bd9eb767f174d7536659f52882deecd6084 | |
parent | 3655fed7bda87c3b62a6007efd73a8ce53214c18 (diff) | |
download | perl-dae3349befa4da12591930c4991283a48b63d223.tar.gz |
ext/PerlIO-encoding/t/encoding.t: Skip on EBCDIC
encoding doesn't current work.
-rw-r--r-- | ext/PerlIO-encoding/t/encoding.t | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/PerlIO-encoding/t/encoding.t b/ext/PerlIO-encoding/t/encoding.t index fdd1f246c1..cba14a8243 100644 --- a/ext/PerlIO-encoding/t/encoding.t +++ b/ext/PerlIO-encoding/t/encoding.t @@ -9,6 +9,10 @@ BEGIN { print "1..0 # Skip: not Encode\n"; exit 0; } + if (ord("A") == 193) { + print "1..0 # Skip: EBCDIC\n"; + exit 0; + } require "../../t/charset_tools.pl"; } |