summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-10-29 13:58:48 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-10-29 13:58:48 +0000
commita26bfc4071db8f95dd7f276153f0e66ae359b9aa (patch)
treee186e85809cdb9556502edb7a6c45f3a160d5e7f
parentc8b7969b755f70e6e0d3c23175fc103851921fa5 (diff)
downloadperl-a26bfc4071db8f95dd7f276153f0e66ae359b9aa.tar.gz
Mark the test known to be failing in EBCDIC.
p4raw-id: //depot/perl@12765
-rwxr-xr-xt/op/tr.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/op/tr.t b/t/op/tr.t
index 6390f6a9e5..124c08a94e 100755
--- a/t/op/tr.t
+++ b/t/op/tr.t
@@ -286,6 +286,7 @@ print "ok 49\n";
# UTF8 range tests from Inaba Hiroto
+# Not working in EBCDIC as of 12674.
($a = v300.196.172.302.197.172) =~ tr/\x{12c}-\x{130}/\xc0-\xc4/;
print "not " unless $a eq v192.196.172.194.197.172;
print "ok 50\n";
@@ -326,10 +327,12 @@ print "ok 57\n";
# (i-j, r-s, I-J, R-S), [\x89-\x91] [\xc9-\xd1] has to match them,
# from Karsten Sperling.
+# Not working in EBCDIC as of 12674.
$c = ($a = "\x89\x8a\x8b\x8c\x8d\x8f\x90\x91") =~ tr/\x89-\x91/X/;
print "not " unless $c == 8 and $a eq "XXXXXXXX";
print "ok 58\n";
+# Not working in EBCDIC as of 12674.
$c = ($a = "\xc9\xca\xcb\xcc\xcd\xcf\xd0\xd1") =~ tr/\xc9-\xd1/X/;
print "not " unless $c == 8 and $a eq "XXXXXXXX";
print "ok 59\n";