This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
3655fed
)
ext/PerlIO-encoding/t/encoding.t: Skip on EBCDIC
author
Karl Williamson
<khw@cpan.org>
Fri, 28 Nov 2014 05:35:07 +0000
(22:35 -0700)
committer
Karl Williamson
<khw@cpan.org>
Sun, 15 Mar 2015 04:59:44 +0000
(22:59 -0600)
encoding doesn't current work.
ext/PerlIO-encoding/t/encoding.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/PerlIO-encoding/t/encoding.t
b/ext/PerlIO-encoding/t/encoding.t
index
fdd1f24
..
cba14a8
100644
(file)
--- 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";
}