2
0
mirror of https://github.com/boostorg/math.git synced 2026-02-19 02:22:15 +00:00

Remove redundant testing and failing test

This commit is contained in:
Matt Borland
2021-11-25 11:36:55 +02:00
parent 3d25e70fe2
commit e1ded14d81
2 changed files with 6 additions and 1 deletions

View File

@@ -233,7 +233,12 @@ BOOST_AUTO_TEST_CASE( test_main )
test_values(1.0, "double");
#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
test_values(boost::math::concepts::real_concept(0), "real_concept");
#endif
#endif
//