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

[Bernoulli] We shouldn't test long double values if not supported.

This commit is contained in:
jzmaddock
2014-12-10 18:13:38 +00:00
parent 5b9d72131f
commit e7cdf218e8

View File

@@ -223,9 +223,11 @@ BOOST_AUTO_TEST_CASE( test_main )
{
test<float>("float");
test<double>("double");
#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
test<long double>("long double");
test<boost::math::concepts::real_concept>("real_concept");
test_real_concept_extra();
#endif
}