Expect :test_zero_input to fail on amd64

The clang 4.x+ upgrade now causes this testcase to fail, but
only on amd64.

More investigation will be done to determine the cause.

MFC after:	1 week
Reported by:	Jenkins
PR:		217528
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Enji Cooper 2017-03-09 06:58:47 +00:00
parent b97b0df681
commit 6cddacd039
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=314951

View File

@ -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);