Skip to content

Commit

Permalink
t/op/print.t: Skip an EBCDIC test
Browse files Browse the repository at this point in the history
This could be written (the values would probably change depending on the
code page), but the code that would get exercised is unlikely to vary
depending on character set.
  • Loading branch information
Karl Williamson authored and khwilliamson committed Nov 27, 2014
1 parent 9e5c9fc commit c5e371e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions t/op/print.t
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ fresh_perl_is('$_ = qq{OK\n}; print STDOUT;', "OK\n", {},
'print with only a filehandle outputs $_');
SKIP: {
skip_if_miniperl('no dynamic loading of PerlIO::scalar in miniperl');
skip("EBCDIC") if $::IS_EBCDIC; # Varies depending on code page
fresh_perl_is(<<'EOF', "\xC1\xAF\xC1\xAF\xC1\xB0\xC1\xB3", {}, "print doesn't launder utf8 overlongs");
use strict;
use warnings;
Expand Down

0 comments on commit c5e371e

Please sign in to comment.