mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Mark :reduction as an expected failure
It fails with clang 5.0+. PR: 220989 MFC after: 2 months MFC with: r321369 Reported by: Jenkins
This commit is contained in:
parent
4580a78efd
commit
bc82a381be
1 changed files with 5 additions and 0 deletions
|
|
@ -162,6 +162,11 @@ ATF_TC_BODY(reduction, tc)
|
|||
};
|
||||
#endif
|
||||
|
||||
#if defined(__clang__) && \
|
||||
((__clang_major__ >= 5))
|
||||
atf_tc_expect_fail("test fails with clang 5.0+ - bug 220989");
|
||||
#endif
|
||||
|
||||
unsigned i;
|
||||
|
||||
for (i = 0; i < nitems(f_pi_odd); i++) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue