aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2017-03-09 06:58:47 +0000
committerEnji Cooper <ngie@FreeBSD.org>2017-03-09 06:58:47 +0000
commit6cddacd039d650011edb00390e3ad17fde2f5302 (patch)
tree9b54517dc949bed9f540095f96145aaa3bd77ff0 /lib
parentb97b0df6814ca3f4ea713c4ad93a674d2d6c653f (diff)
Notes
Diffstat (limited to 'lib')
-rw-r--r--lib/msun/tests/ctrig_test.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/msun/tests/ctrig_test.c b/lib/msun/tests/ctrig_test.c
index 84156429f592..45b2b78b0416 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);