diff options
-rw-r--r-- | lib/msun/tests/ctrig_test.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/msun/tests/ctrig_test.c b/lib/msun/tests/ctrig_test.c index c37e151..18c18f8 100644 --- a/lib/msun/tests/ctrig_test.c +++ b/lib/msun/tests/ctrig_test.c @@ -138,6 +138,13 @@ ATF_TC_BODY(test_zero_input, tc) { long double complex zero = CMPLXL(0.0, 0.0); +#if defined(__amd64__) +#if defined(__clang__) && \ + ((__clang_major__ >= 4)) + atf_tc_expect_fail("test fails with clang 4.x+ - bug 217528"); +#endif +#endif + /* csinh(0) = ctanh(0) = 0; ccosh(0) = 1 (no exceptions raised) */ testall_odd(csinh, zero, zero, ALL_STD_EXCEPT, 0, CS_BOTH); testall_odd(csin, zero, zero, ALL_STD_EXCEPT, 0, CS_BOTH); |