Temporarily mark lib.msun.{cbrt_test.cbrtl_powl,trig_test.reduction}

expected failure after clang700-import merge

PR:		234040
Reviewed by:	ngie, markj
Approved by:	markj (mentor)
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D18938
This commit is contained in:
Li-Wen Hsu 2019-01-25 18:48:20 +00:00
parent 719fd9fb2c
commit 24df7b15fa
2 changed files with 8 additions and 0 deletions

View File

@ -268,6 +268,10 @@ ATF_TC_BODY(cbrtl_powl, tc)
long double y, z;
size_t i;
#if defined(__amd64__) && defined(__clang__) && __clang_major__ >= 7
atf_tc_expect_fail("test fails with clang 7+ - bug 234040");
#endif
for (i = 0; i < __arraycount(x); i++) {
y = cbrtl(x[i]);

View File

@ -160,6 +160,10 @@ ATF_TC_BODY(reduction, tc)
unsigned i;
#if defined(__amd64__) && defined(__clang__) && __clang_major__ >= 7
atf_tc_expect_fail("test fails with clang 7+ - bug 234040");
#endif
for (i = 0; i < nitems(f_pi_odd); i++) {
ATF_CHECK(fabs(sinf(f_pi_odd[i])) < FLT_EPSILON);
ATF_CHECK(cosf(f_pi_odd[i]) == -1.0);