* tests/test-c32width.c (main): Skip two tests on FreeBSD < 13.
+2023-08-26 Bruno Haible <bruno@clisp.org>
+
+ c32width tests: Avoid failure on FreeBSD 12.
+ * tests/test-c32width.c (main): Skip two tests on FreeBSD < 13.
+
2023-08-26 Bruno Haible <bruno@clisp.org>
crypto/{sha*,md5,sm3}-buffer: Ignore too old OpenSSL versions.
ASSERT (c32width (0x3000) == 2);
ASSERT (c32width (0xB250) == 2);
ASSERT (c32width (0xFF1A) == 2);
+ #if !(defined __FreeBSD__ && __FreeBSD__ < 13 && !defined __GLIBC__)
ASSERT (c32width (0x20369) == 2);
ASSERT (c32width (0x2F876) == 2);
+ #endif
}
return 0;