diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-13 01:33:01 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-13 01:33:01 +0000 |
commit | 1b680483939a53e172291396d745a8e36262126f (patch) | |
tree | 848a011a7ff0c5dccbea2bbdb96174bd06808411 /t | |
parent | a0bb191f65e6f0f95c9f301132cb52505fb026a4 (diff) | |
download | perl-1b680483939a53e172291396d745a8e36262126f.tar.gz |
Retract #14666.
p4raw-id: //depot/perl@14667
Diffstat (limited to 't')
-rw-r--r-- | t/op/lc.t | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -86,10 +86,10 @@ ok(lc($b) eq "\x{101}\x{101}aa", 'lc'); # and it's uppercase is \x{178}, LATIN CAPITAL LETTER Y WITH DIAERESIS. if (ord("A") == 193) { # EBCDIC - ok(uc("\x{DF}aB\x{149}cD") eq "\x{178}AB\x{2BC}NCD", + ok("\U\x{DF}aB\x{149}cD" eq "\x{178}AB\x{2BC}NCD", "multicharacter uppercase"); } elsif (ord("A") == 65) { - ok(uc("\x{DF}aB\x{149}cD") eq "SSAB\x{2BC}NCD", + ok("\U\x{DF}aB\x{149}cD" eq "SSAB\x{2BC}NCD", "multicharacter uppercase"); } else { ok(0, "what is your encoding?"); @@ -99,10 +99,10 @@ if (ord("A") == 193) { # EBCDIC # There are no single character -> multiple characters lowercase mappings. if (ord("A") == 193) { # EBCDIC - ok(lc("aB\x{149}cD") eq "ab\x{149}cd", + ok("\LaB\x{149}cD" eq "ab\x{149}cd", "multicharacter lowercase"); } elsif (ord("A") == 65) { - ok(lc("\x{DF}aB\x{149}cD") eq "\x{DF}ab\x{149}cd", + ok("\L\x{DF}aB\x{149}cD" eq "\x{DF}ab\x{149}cd", "multicharacter lowercase"); } else { ok(0, "what is your encoding?"); |