]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/math/test/test_legendre.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / math / test / test_legendre.cpp
index 3a0490d5f08adde2d8f01c7785e52e4594b5a3c5..7551fdd6058173f2c7be12c75ed9a771c83438cd 100644 (file)
@@ -200,7 +200,9 @@ BOOST_AUTO_TEST_CASE( test_main )
    test_spots(0.0, "double");
 #ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
    test_spots(0.0L, "long double");
+#ifndef BOOST_MATH_NO_REAL_CONCEPT_TESTS
    test_spots(boost::math::concepts::real_concept(0.1), "real_concept");
+#endif
 #endif
 
    expected_results();
@@ -221,11 +223,15 @@ BOOST_AUTO_TEST_CASE( test_main )
 
    test_legendre_p_prime<float>();
    test_legendre_p_prime<double>();
+#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
    test_legendre_p_prime<long double>();
+#endif
 
    int ulp_distance = test_legendre_p_zeros_double_ulp(1, 100);
    BOOST_CHECK(ulp_distance <= 2);
    test_legendre_p_zeros<float>();
    test_legendre_p_zeros<double>();
+#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
    test_legendre_p_zeros<long double>();
+#endif
 }