]> Savannah Git Hosting - gnulib.git/commitdiff
c32isprint tests: Avoid test failure on mingw/ucrt.
authorBruno Haible <bruno@clisp.org>
Sun, 22 Dec 2024 13:34:29 +0000 (14:34 +0100)
committerBruno Haible <bruno@clisp.org>
Wed, 25 Dec 2024 14:32:32 +0000 (15:32 +0100)
* tests/test-c32isprint.c (main): Disable test that fails on mingw/ucrt.

ChangeLog
tests/test-c32isprint.c

index e9735532e3508f924f28027a8b5cb176640b680d..778036ce794e5f2176d1b0d462c6691e33763c1f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-12-22  Bruno Haible  <bruno@clisp.org>
+
+       c32isprint tests: Avoid test failure on mingw/ucrt.
+       * tests/test-c32isprint.c (main): Disable test that fails on mingw/ucrt.
+
 2024-12-22  Bruno Haible  <bruno@clisp.org>
 
        btowc: Fix declaration on mingw/ucrt.
index 4d0bfc48b6fe8bc7791eec999ccd6b77856dab66..eaa0e824e8a6789f7e89e708f4e55833e74a39d6 100644 (file)
@@ -172,7 +172,7 @@ main (int argc, char *argv[])
           is = for_character ("\342\200\256", 3);
           ASSERT (is == 0);
         #endif
-        #if !(defined __FreeBSD__ || defined __DragonFly__ || defined __sun)
+        #if !(defined __FreeBSD__ || defined __DragonFly__ || defined __sun || (defined _WIN32 && !defined __CYGWIN__))
           /* U+3000 IDEOGRAPHIC SPACE */
           is = for_character ("\343\200\200", 3);
           ASSERT (is != 0);