From ad158fdaa31cb44626518d4ca6f03e3142b299a7 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 22 Dec 2024 14:34:29 +0100 Subject: [PATCH] c32isprint tests: Avoid test failure on mingw/ucrt. * tests/test-c32isprint.c (main): Disable test that fails on mingw/ucrt. --- ChangeLog | 5 +++++ tests/test-c32isprint.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ec6700e2c9..fa56b8cda3 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); -- 2.39.5