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)
Tue, Sep 8, 5:57 AM
Unknown Object (File)
Sun, Sep 6, 2:59 PM
Unknown Object (File)
Sun, Sep 6, 2:39 PM
Unknown Object (File)
Sun, Sep 6, 12:53 PM
Unknown Object (File)
Sat, Sep 5, 10:57 PM
Unknown Object (File)
Sat, Sep 5, 6:00 PM
Unknown Object (File)
Sat, Sep 5, 5:59 PM
Unknown Object (File)
Sat, Sep 5, 1:27 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 22110
Build 21332: 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.