diff options
Diffstat (limited to 'tests/unigbrk/test-u16-grapheme-prev.c')
-rw-r--r-- | tests/unigbrk/test-u16-grapheme-prev.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/unigbrk/test-u16-grapheme-prev.c b/tests/unigbrk/test-u16-grapheme-prev.c index 7de29a33..8c17bdac 100644 --- a/tests/unigbrk/test-u16-grapheme-prev.c +++ b/tests/unigbrk/test-u16-grapheme-prev.c @@ -1,5 +1,5 @@ /* Previous grapheme cluster test. - Copyright (C) 2010-2024 Free Software Foundation, Inc. + Copyright (C) 2010-2025 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published @@ -97,6 +97,15 @@ main (void) test_u16_grapheme_prev (1, 'e', ACUTE, 'x', -1); test_u16_grapheme_prev (2, 'e', ACUTE, 'e', ACUTE, -1); + /* CR LF handling. */ + test_u16_grapheme_prev (2, 'c', '\r', '\n', -1); + + /* Emoji modifier / ZWJ sequence. */ + test_u16_grapheme_prev (5, 0x2B50, 0x0305, 0x0347, 0x200D, 0x2600, -1); + + /* Regional indicators. */ + test_u16_grapheme_prev (4, 0xD83C, 0xDDE9, 0xD83C, 0xDDEA, 0xD83C, 0xDDEB, 0xD83C, 0xDDF7, -1); + /* Surrogate pairs. */ test_u16_grapheme_prev (2, 0xd83d, 0xde10, -1); /* 😐: neutral face. */ test_u16_grapheme_prev (3, 0xd83d, 0xde10, GRAVE, -1); |