From c2955298f73609931e7742722d6cdab7cad91e16 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Sun, 30 Apr 2006 17:58:53 +0000 Subject: [PATCH] We had no tests that covered the grow paths in pp_uc and pp_lc. p4raw-id: //depot/perl@28028 --- t/op/lc.t | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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'); +} -- 2.34.1