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:
parent
bcc5b24456
commit
83ff5d5d98
@ -269,8 +269,8 @@ ATF_TC_BODY(cbrtl_powl, tc)
|
|||||||
size_t i;
|
size_t i;
|
||||||
|
|
||||||
#if defined(__amd64__) && defined(__clang__) && __clang_major__ >= 7 && \
|
#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");
|
atf_tc_expect_fail("test fails with clang 7-9 - bug 234040");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
for (i = 0; i < __arraycount(x); i++) {
|
for (i = 0; i < __arraycount(x); i++) {
|
||||||
|
@ -161,7 +161,7 @@ ATF_TC_BODY(reduction, tc)
|
|||||||
unsigned i;
|
unsigned i;
|
||||||
|
|
||||||
#if defined(__amd64__) && defined(__clang__) && __clang_major__ >= 7 && \
|
#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");
|
atf_tc_expect_fail("test fails with clang 7+ - bug 234040");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user