diff options
Diffstat (limited to 'tests/unigbrk/test-u32-grapheme-next.c')
-rw-r--r-- | tests/unigbrk/test-u32-grapheme-next.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/unigbrk/test-u32-grapheme-next.c b/tests/unigbrk/test-u32-grapheme-next.c index 74e67448..eee9bafd 100644 --- a/tests/unigbrk/test-u32-grapheme-next.c +++ b/tests/unigbrk/test-u32-grapheme-next.c @@ -1,5 +1,5 @@ /* Next grapheme cluster length 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 @@ -95,6 +95,15 @@ main (void) test_u32_grapheme_next (2, 'e', ACUTE, 'x', -1); test_u32_grapheme_next (2, 'e', ACUTE, 'e', ACUTE, -1); + /* CR LF handling. */ + test_u32_grapheme_next (2, '\r', '\n', 'd', -1); + + /* Emoji modifier / ZWJ sequence. */ + test_u32_grapheme_next (5, 0x2B50, 0x0305, 0x0347, 0x200D, 0x2600, -1); + + /* Regional indicators. */ + test_u32_grapheme_next (2, 0x1F1E9, 0x1F1EA, 0x1F1EB, 0x1F1F7, -1); + /* Outside BMP. */ #define NEUTRAL_FACE 0x1f610 /* 😐: neutral face. */ test_u32_grapheme_next (1, NEUTRAL_FACE, -1); |