summaryrefslogtreecommitdiff
path: root/t/op/tr.t
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-05-15 13:34:07 -0600
committerKarl Williamson <khw@cpan.org>2015-08-25 16:58:01 -0600
commit02f1786bedc74672bb8402e240d9c430e0dbb799 (patch)
tree4176ed91cf397321efdacb8d9fd3502864fafcaf /t/op/tr.t
parent2890b6e4f939b25ff5a7d8f0778bde87ac9e86db (diff)
downloadperl-02f1786bedc74672bb8402e240d9c430e0dbb799.tar.gz
t/op/tr.t: Clarify skip tests message
Diffstat (limited to 't/op/tr.t')
-rw-r--r--t/op/tr.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/tr.t b/t/op/tr.t
index a13021331a..ffb3877f56 100644
--- a/t/op/tr.t
+++ b/t/op/tr.t
@@ -324,7 +324,7 @@ is($c, 8);
is($a, "XXXXXXXX");
SKIP: {
- skip "not EBCDIC", 4 unless $::IS_EBCDIC;
+ skip "valid only on EBCDIC platforms", 4 unless $::IS_EBCDIC;
$c = ($a = "\x89\x8a\x8b\x8c\x8d\x8f\x90\x91") =~ tr/i-j/X/;
is($c, 2);