From: Bruno Haible Date: Sun, 22 Dec 2024 13:34:29 +0000 (+0100) Subject: c32isprint tests: Avoid test failure on mingw/ucrt. X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=6caa9138d0acae6e1ffec82eb169cb18d9efd5b9;p=gnulib.git c32isprint tests: Avoid test failure on mingw/ucrt. * tests/test-c32isprint.c (main): Disable test that fails on mingw/ucrt. --- diff --git a/ChangeLog b/ChangeLog index ce15861189..3cd896b277 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-12-22 Bruno Haible + + 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 btowc: Fix declaration on mingw/ucrt. diff --git a/tests/test-c32isprint.c b/tests/test-c32isprint.c index 61018afcc1..2d5da0a771 100644 --- a/tests/test-c32isprint.c +++ b/tests/test-c32isprint.c @@ -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);