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)
Sun, Aug 23, 4:12 PM
Unknown Object (File)
Sun, Aug 23, 3:37 PM
Unknown Object (File)
Sat, Aug 22, 2:12 PM
Unknown Object (File)
Sat, Aug 22, 11:18 AM
Unknown Object (File)
Tue, Aug 18, 1:39 PM
Unknown Object (File)
Tue, Aug 11, 9:18 AM
Unknown Object (File)
Tue, Aug 11, 7:44 AM
Unknown Object (File)
Mon, Aug 10, 10:17 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 Not Applicable
Unit
Tests Not Applicable

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.