From: Jarkko Hietaniemi Date: Sun, 1 Apr 2001 05:58:23 +0000 (+0000) Subject: Test for #9499. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=629b45841d15418d44d20fd831d8af280e4f939e;p=p5sagit%2Fp5-mst-13.2.git Test for #9499. p4raw-id: //depot/perl@9500 --- diff --git a/t/op/tr.t b/t/op/tr.t index e815cf2..c7b4461 100755 --- a/t/op/tr.t +++ b/t/op/tr.t @@ -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";