diff options
Diffstat (limited to 't/re/re_tests')
-rw-r--r-- | t/re/re_tests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/t/re/re_tests b/t/re/re_tests index 2bdb24cdb8..4eafaf79bc 100644 --- a/t/re/re_tests +++ b/t/re/re_tests @@ -1567,4 +1567,9 @@ abc\N{def - c - \\N{NAME} must be resolved by the lexer # /i properties shouldn't match more than the property itself /[[:ascii:]]/i \N{KELVIN SIGN} n - - +# [[:lower:]]/i and [[:upper:]]/i should match what \p{Lower} and \p{Upper} do. +# which is \p{Cased}, not \p{Alpha}, +/[[:lower:]]/i \N{U+3400} n - - +/[[:upper:]]/i \N{U+01BB} n - - + # vim: softtabstop=0 noexpandtab |