From e7cdf218e80eca5607c2bf37cf627ab621790cb4 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 10 Dec 2014 18:13:38 +0000 Subject: [PATCH] [Bernoulli] We shouldn't test long double values if not supported. --- test/test_bernoulli_constants.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_bernoulli_constants.cpp b/test/test_bernoulli_constants.cpp index b41c2fdbf..82734b73c 100644 --- a/test/test_bernoulli_constants.cpp +++ b/test/test_bernoulli_constants.cpp @@ -223,9 +223,11 @@ BOOST_AUTO_TEST_CASE( test_main ) { test("float"); test("double"); +#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS test("long double"); test("real_concept"); test_real_concept_extra(); +#endif }