From: Bruno Haible <bruno@clisp.org> Date: Tue, 30 Jan 2024 16:37:03 +0000 (+0100) Subject: unigbrk/uc-is-grapheme-break tests: Reduce verbosity. X-Git-Tag: v1.0~475 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=fa2931c1ca3c942b7422a0bd10711e1121ba6360;p=gnulib.git unigbrk/uc-is-grapheme-break tests: Reduce verbosity. * tests/unigbrk/test-uc-is-grapheme-break.c (graphemebreakproperty_to_string): Don't print gbp to stdout. --- diff --git a/ChangeLog b/ChangeLog index 770d32af4f..aee05e7cc7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2024-01-30 Bruno Haible <bruno@clisp.org> + + unigbrk/uc-is-grapheme-break tests: Reduce verbosity. + * tests/unigbrk/test-uc-is-grapheme-break.c + (graphemebreakproperty_to_string): Don't print gbp to stdout. + 2024-01-30 Bruno Haible <bruno@clisp.org> gen-uni-tables: Update copyright year in output. diff --git a/tests/unigbrk/test-uc-is-grapheme-break.c b/tests/unigbrk/test-uc-is-grapheme-break.c index 67c5c21680..b71035a2a9 100644 --- a/tests/unigbrk/test-uc-is-grapheme-break.c +++ b/tests/unigbrk/test-uc-is-grapheme-break.c @@ -30,7 +30,6 @@ const char * graphemebreakproperty_to_string (int gbp) { - printf ("%d\n", gbp); switch (gbp) { #define CASE(VALUE) case GBP_##VALUE: return #VALUE;