diff options
Diffstat (limited to 'tests/unigbrk/test-u8-grapheme-breaks.c')
-rw-r--r-- | tests/unigbrk/test-u8-grapheme-breaks.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unigbrk/test-u8-grapheme-breaks.c b/tests/unigbrk/test-u8-grapheme-breaks.c index fdc0d505..1ccdd601 100644 --- a/tests/unigbrk/test-u8-grapheme-breaks.c +++ b/tests/unigbrk/test-u8-grapheme-breaks.c @@ -1,5 +1,5 @@ /* Grapheme cluster breaks test. - Copyright (C) 2010-2022 Free Software Foundation, Inc. + Copyright (C) 2010-2024 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 @@ -50,7 +50,7 @@ test_u8_grapheme_breaks (const char *input, const char *expected) fprintf (stderr, " input:"); for (j = 0; j < n; j++) - fprintf (stderr, " %02x", s[j]); + fprintf (stderr, " %02X", s[j]); putc ('\n', stderr); fprintf (stderr, "expected:"); @@ -63,6 +63,7 @@ test_u8_grapheme_breaks (const char *input, const char *expected) fprintf (stderr, " %d", breaks[j]); putc ('\n', stderr); + fflush (stderr); abort (); } |