Using the GB18030 locale OmniOS doesn't match U+00D7 MULTIPLICATION SIGN
as a punctuation character.
* tests/test-fnmatch.c (main): Skip the test. Discovered by CI test
using OmniOS r151048 and reproduced on OmniOS r151050.
+2024-05-21 Collin Funk <collin.funk1@gmail.com>
+
+ fnmatch tests: Avoid test failure on OmniOS.
+ Using the GB18030 locale OmniOS doesn't match U+00D7 MULTIPLICATION SIGN
+ as a punctuation character.
+ * tests/test-fnmatch.c (main): Skip the test. Discovered by CI test
+ using OmniOS r151048 and reproduced on OmniOS r151050.
+
2024-05-20 Bruno Haible <bruno@clisp.org>
vasnprintf: Don't abort for pseudo-denormal arguments on macOS 12.
/* U+20000 <CJK Ideograph> */
ASSERT (fnmatch ("x[[:print:]]y", "x\225\062\202\066y", 0) == 0);
#endif
- #if !(defined __FreeBSD__ || defined __DragonFly__)
+ #if !(defined __FreeBSD__ || defined __DragonFly__ || defined __illumos__)
/* U+00D7 MULTIPLICATION SIGN */
ASSERT (fnmatch ("x[[:punct:]]y", "x\241\301y", 0) == 0);
#endif