summaryrefslogtreecommitdiff
path: root/ext/PerlIO-encoding
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2014-11-27 22:35:07 -0700
committerKarl Williamson <khw@cpan.org>2015-03-14 22:59:44 -0600
commitdae3349befa4da12591930c4991283a48b63d223 (patch)
tree34953bd9eb767f174d7536659f52882deecd6084 /ext/PerlIO-encoding
parent3655fed7bda87c3b62a6007efd73a8ce53214c18 (diff)
downloadperl-dae3349befa4da12591930c4991283a48b63d223.tar.gz
ext/PerlIO-encoding/t/encoding.t: Skip on EBCDIC
encoding doesn't current work.
Diffstat (limited to 'ext/PerlIO-encoding')
-rw-r--r--ext/PerlIO-encoding/t/encoding.t4
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";
}