Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test/test_next.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,11 +263,11 @@ BOOST_AUTO_TEST_CASE( test_main )
#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
test_values(1.0L, "long double");

// MSVC-14.3 fails with real concept on Github Actions, but the failure cannot be reproduced locally
// See: https://github.com/boostorg/math/pull/720
#if !defined(_MSC_VER) || _MSC_VER < 1930
#if defined(_MSC_VER)
// In some versions of Windows Server 2022, ucrtbase!ldexp has a bug that causes the following test to fail
if (FP_ZERO == std::fpclassify(std::ldexp(1.0L, -1075)))
#endif
test_values(boost::math::concepts::real_concept(0), "real_concept");
#endif
#endif

//
Expand Down
Loading