diff options
author | Karl Williamson <khw@cpan.org> | 2015-05-15 13:34:07 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-08-25 16:58:01 -0600 |
commit | 02f1786bedc74672bb8402e240d9c430e0dbb799 (patch) | |
tree | 4176ed91cf397321efdacb8d9fd3502864fafcaf /t/op/tr.t | |
parent | 2890b6e4f939b25ff5a7d8f0778bde87ac9e86db (diff) | |
download | perl-02f1786bedc74672bb8402e240d9c430e0dbb799.tar.gz |
t/op/tr.t: Clarify skip tests message
Diffstat (limited to 't/op/tr.t')
-rw-r--r-- | t/op/tr.t | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |