* tests/test-wcwidth.c (main): If the wchar-single module is present,
skip the tests in the C locale.
+2018-06-24 Bruno Haible <bruno@clisp.org>
+
+ wchar-single: Fix test failure in wcwidth tests.
+ * tests/test-wcwidth.c (main): If the wchar-single module is present,
+ skip the tests in the C locale.
+
2018-06-23 Pádraig Brady <P@draigBrady.com>
crypto: mention --without-linux-crypto in --with-openssl --help
{
wchar_t wc;
-#ifdef C_CTYPE_ASCII
+#if !GNULIB_WCHAR_SINGLE
+# ifdef C_CTYPE_ASCII
/* Test width of ASCII characters. */
for (wc = 0x20; wc < 0x7F; wc++)
ASSERT (wcwidth (wc) == 1);
+# endif
#endif
/* Switch to an UTF-8 locale. */