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

Complete CI test with standalone mode (#680)

This commit is contained in:
Matt Borland
2022-01-14 18:12:22 +02:00
committed by GitHub
parent 3019900cb7
commit e1601f129a
327 changed files with 1005 additions and 701 deletions

View File

@@ -725,7 +725,7 @@ BOOST_AUTO_TEST_CASE( test_main )
test_spots(0.0); // Test double. OK at decdigits 7, tolerance = 1e07 %
#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
test_spots(0.0L); // Test long double.
#if !BOOST_WORKAROUND(BOOST_BORLANDC, BOOST_TESTED_AT(0x0582))
#if !BOOST_WORKAROUND(BOOST_BORLANDC, BOOST_TESTED_AT(0x0582)) && !defined(BOOST_MATH_NO_REAL_CONCEPT_TESTS)
test_spots(boost::math::concepts::real_concept(0.)); // Test real concept.
#endif
#else