Reported by Michele Locati <mlocati@gmail.com> in
<https://lists.gnu.org/archive/html/bug-gnulib/2024-09/msg00135.html>.
* tests/test-string-buffer.c (main): Skip a wchar_t test on native
Windows.
+2024-09-26 Bruno Haible <bruno@clisp.org>
+
+ string-buffer tests: Avoid test failure on native Windows.
+ Reported by Michele Locati <mlocati@gmail.com> in
+ <https://lists.gnu.org/archive/html/bug-gnulib/2024-09/msg00135.html>.
+ * tests/test-string-buffer.c (main): Skip a wchar_t test on native
+ Windows.
+
2024-09-25 Bruno Haible <bruno@clisp.org>
manywarnings: Enable -Wthread-safety for clang.
sb_append_c (&buffer, "<");
ret = sb_appendf (&buffer, "%lc", (wint_t) 0x76543210);
- #if !defined _AIX
+ #if !(defined _AIX || (defined _WIN32 && !defined __CYGWIN__))
ASSERT (ret < 0);
ASSERT (errno == EILSEQ);
#endif