From: Nicholas Clark Date: Sun, 30 Apr 2006 17:58:53 +0000 (+0000) Subject: We had no tests that covered the grow paths in pp_uc and pp_lc. X-Git-Tag: upstream/5.16.3~17790 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c2955298f73609931e7742722d6cdab7cad91e16;p=platform%2Fupstream%2Fperl.git We had no tests that covered the grow paths in pp_uc and pp_lc. p4raw-id: //depot/perl@28028 --- diff --git a/t/op/lc.t b/t/op/lc.t index 95cf0195a4..571868fe02 100644 --- a/t/op/lc.t +++ b/t/op/lc.t @@ -6,7 +6,7 @@ BEGIN { require './test.pl'; } -plan tests => 77; +plan tests => 87; $a = "HELLO.* world"; $b = "hello.* WORLD"; @@ -199,3 +199,9 @@ for (map { $_ } "A\x{100}", "ABC\x{100}", "\x{100}") { is($result, $expect, "[perl #38619]"); } +for (1, 4, 9, 16, 25) { + is(uc "\x{03B0}" x $_, "\x{3a5}\x{308}\x{301}" x $_, + 'uc U+03B0 grows threefold'); + + is(lc "\x{0130}" x $_, "i\x{307}" x $_, 'lc U+0130 grows'); +}