Skip to content

Commit

Permalink
corpus.t: Skip on EBCDIC
Browse files Browse the repository at this point in the history
Until Encode is fixed to work on EBCDIC, this can't.
  • Loading branch information
khwilliamson committed Feb 5, 2015
1 parent bb33df1 commit 65fd417
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions t/corpus.t
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ BEGIN {
print "1..0 # Skip: Encode was not built\n";
exit 0;
}
if (ord("A") != 65) {
print "1..0 # Skip: Encode not fully working on non-ASCII platforms at this time\n";
exit 0;
}
}

#use Pod::Simple::Debug (10);
Expand Down

0 comments on commit 65fd417

Please sign in to comment.