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-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c2955298f73609931e7742722d6cdab7cad91e16;p=p5sagit%2Fp5-mst-13.2.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 95cf019..571868f 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'); +}