+2024-06-09 Bruno Haible <bruno@clisp.org>
+
+ c32width tests: Avoid a test failure on Solaris 11 OpenIndiana, OmniOS.
+ * tests/test-c32width.c (main): On Solaris, disable two tests that fail
+ on Solaris 11 OpenIndiana and Solaris 11 OmniOS.
+
2024-06-09 Bruno Haible <bruno@clisp.org>
c32ispunct tests: Avoid a test failure on Solaris 11 OmniOS.
/* Test of c32width() function.
- Copyright (C) 2007-2023 Free Software Foundation, Inc.
+ Copyright (C) 2007-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
ASSERT (c32width (0x3000) == 2);
ASSERT (c32width (0xB250) == 2);
ASSERT (c32width (0xFF1A) == 2);
- #if !(defined __FreeBSD__ && __FreeBSD__ < 13 && !defined __GLIBC__)
+ #if !((defined __FreeBSD__ && __FreeBSD__ < 13 && !defined __GLIBC__) || defined __sun)
ASSERT (c32width (0x20369) == 2);
ASSERT (c32width (0x2F876) == 2);
#endif