diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-01 05:58:23 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-01 05:58:23 +0000 |
commit | 629b45841d15418d44d20fd831d8af280e4f939e (patch) | |
tree | 006a100c657b130bd0fbdaeab0e00d8ec2cbab3c /t | |
parent | bf4a1e57418e4e968df2de0a68b966c25d5da8ea (diff) | |
download | perl-629b45841d15418d44d20fd831d8af280e4f939e.tar.gz |
Test for #9499.
p4raw-id: //depot/perl@9500
Diffstat (limited to 't')
-rwxr-xr-x | t/op/tr.t | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -5,7 +5,7 @@ BEGIN { @INC = '../lib'; } -print "1..65\n"; +print "1..66\n"; $_ = "abcdefghijklmnopqrstuvwxyz"; @@ -367,3 +367,6 @@ print "ok 64\n"; print "not " unless $a eq "\x{100}"; print "ok 65\n"; +$a = "\xfe\xff"; $a =~ tr/\xfe\xff/\x{1ff}\x{1fe}/; +print "not " unless $a eq "\x{1ff}\x{1fe}"; +print "ok 66\n"; |