* tests/test-uchar.c: Disable a test when HP cc is in use.
+2020-01-03 Bruno Haible <bruno@clisp.org>
+
+ uchar tests: Avoid compilation error with HP cc.
+ * tests/test-uchar.c: Disable a test when HP cc is in use.
+
2020-01-03 Bruno Haible <bruno@clisp.org>
mbrtoc32: Add tests.
/* Check that char16_t and char32_t are unsigned types. */
verify ((char16_t)(-1) >= 0);
+#if !defined __HP_cc
verify ((char32_t)(-1) >= 0);
+#endif
/* Check that char32_t is at least 31 bits wide. */
verify ((char32_t)0x7FFFFFFF != (char32_t)0x3FFFFFFF);