From: Bruno Haible Date: Sat, 8 Jun 2024 19:03:39 +0000 (+0200) Subject: c32isblank tests: Avoid test failure on NetBSD 10.0. X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=d0f955d16cc356bc307e9951e8062922abe174c5;p=gnulib.git c32isblank tests: Avoid test failure on NetBSD 10.0. * tests/test-c32isblank.c (main): Disable test of '\f', that fails in the fr_FR.UTF-8 locale. --- diff --git a/ChangeLog b/ChangeLog index 7a38b7c689..d979beb484 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2024-06-08 Bruno Haible + + c32isblank tests: Avoid test failure on NetBSD 10.0. + * tests/test-c32isblank.c (main): Disable test of '\f', that fails in + the fr_FR.UTF-8 locale. + 2024-06-08 Bruno Haible usleep tests: Avoid failure due to known Cygwin 3.5.3 bug. diff --git a/tests/test-c32isblank.c b/tests/test-c32isblank.c index 3aa6a28b7c..a1d6d6053a 100644 --- a/tests/test-c32isblank.c +++ b/tests/test-c32isblank.c @@ -77,7 +77,9 @@ main (int argc, char *argv[]) #if !(defined __FreeBSD__ || defined __NetBSD__) case '\v': #endif + #if !defined __NetBSD__ case '\f': + #endif case ' ': case '!': case '"': case '#': case '%': case '&': case '\'': case '(': case ')': case '*': case '+': case ',': case '-': case '.': case '/':