Page MenuHomeFreeBSD

Temporarily mark lib.msun.{cbrt_test.cbrtl_powl,trig_test.reduction} expected failure after clang700-import merge
ClosedPublic

Authored by lwhsu on Jan 24 2019, 4:33 AM.
Tags
None
Referenced Files
Unknown Object (File)
Dec 3 2024, 10:10 AM
Unknown Object (File)
Nov 25 2024, 7:31 AM
Unknown Object (File)
Nov 19 2024, 1:17 PM
Unknown Object (File)
Nov 11 2024, 9:02 PM
Unknown Object (File)
Oct 28 2024, 11:53 AM
Unknown Object (File)
Oct 18 2024, 1:13 PM
Unknown Object (File)
Sep 27 2024, 4:07 PM
Unknown Object (File)
Sep 24 2024, 8:46 PM
Subscribers

Details

Summary

Temporarily mark lib.msun.{cbrt_test.cbrtl_powl,trig_test.reduction}
expected failure after clang700-import merge

PR: 234040

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 22109
Build 21331: arc lint + arc unit

Event Timeline

ngie requested changes to this revision.Jan 24 2019, 5:23 AM

This skips testing on all architectures and compilers.

It would make more sense (and I should have done this before), to do something along the lines of:

#if defined(__amd64__) && defined(__clang__) && __clang_major__ > 7
    atf_tc_expect_fail("test fails with clang 7+ - bug 234040");
#endif
This revision now requires changes to proceed.Jan 24 2019, 5:23 AM

Mark expected failure only on amd64 with clang7+

This revision is now accepted and ready to land.Jan 25 2019, 1:00 AM
This revision was automatically updated to reflect the committed changes.