X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/6818a3573a254af22852a6102b2d70b346bae901..c2955298f73609931e7742722d6cdab7cad91e16:/t/op/lc.t 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'); +}