]> Savannah Git Hosting - gnulib.git/commitdiff
unigbrk/uc-is-grapheme-break tests: Reduce verbosity.
authorBruno Haible <bruno@clisp.org>
Tue, 30 Jan 2024 16:37:03 +0000 (17:37 +0100)
committerBruno Haible <bruno@clisp.org>
Tue, 30 Jan 2024 19:11:22 +0000 (20:11 +0100)
* tests/unigbrk/test-uc-is-grapheme-break.c
(graphemebreakproperty_to_string): Don't print gbp to stdout.

ChangeLog
tests/unigbrk/test-uc-is-grapheme-break.c

index 770d32af4f9a969adcd0475bb97d0c2570560886..aee05e7cc7bf0ceca062eca4c1d3cb77a7404751 100644 (file)
--- 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.
index 67c5c21680c9a80be3f98221d0468b2b65d21e9f..b71035a2a9c9a31075252bea3e3c60f9b570acd9 100644 (file)
@@ -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;