Un-XFAIL two tests with Clang > 10

SVN r343917 fixed this for in-tree clang, but when building with a newer
out-of-tree clang the test was still marked as XFAIL.

Reviewed By:	dim
Differential Revision: https://reviews.freebsd.org/D28390
This commit is contained in:
Alex Richardson 2021-01-28 17:17:49 +00:00
parent bcc5b24456
commit 83ff5d5d98
2 changed files with 3 additions and 3 deletions

View File

@ -269,8 +269,8 @@ ATF_TC_BODY(cbrtl_powl, tc)
size_t i;
#if defined(__amd64__) && defined(__clang__) && __clang_major__ >= 7 && \
__FreeBSD_cc_version < 1300002
atf_tc_expect_fail("test fails with clang 7+ - bug 234040");
__clang_major__ < 10 && __FreeBSD_cc_version < 1300002
atf_tc_expect_fail("test fails with clang 7-9 - bug 234040");
#endif
for (i = 0; i < __arraycount(x); i++) {

View File

@ -161,7 +161,7 @@ ATF_TC_BODY(reduction, tc)
unsigned i;
#if defined(__amd64__) && defined(__clang__) && __clang_major__ >= 7 && \
__FreeBSD_cc_version < 1300002
__clang_major__ < 10 && __FreeBSD_cc_version < 1300002
atf_tc_expect_fail("test fails with clang 7+ - bug 234040");
#endif