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=33529a583b66254009c5f75c6ef9ba15c0c5f1ae;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 d870fdb148..faf496dfb1 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-11 Paul Eggert mktempd: use GNU-style -t if available diff --git a/tests/test-c32isblank.c b/tests/test-c32isblank.c index 71ab86f46a..d7ebf3f21f 100644 --- a/tests/test-c32isblank.c +++ b/tests/test-c32isblank.c @@ -1,5 +1,5 @@ /* Test of c32isblank() function. - Copyright (C) 2020-2023 Free Software Foundation, Inc. + Copyright (C) 2020-2024 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -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 '/':