mirror of
https://github.com/boostorg/math.git
synced 2025-05-11 21:33:52 +00:00
Conditionally disable MP testing for pFq
This commit is contained in:
parent
e06292f69f
commit
d3a3dd3620
@ -81,11 +81,15 @@ BOOST_AUTO_TEST_CASE( test_main )
|
||||
#endif
|
||||
#endif
|
||||
#if !defined(TEST) || (TEST == 3)
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
test_spots(boost::multiprecision::cpp_bin_float_quad(), "cpp_bin_float_quad");
|
||||
#endif
|
||||
#endif
|
||||
#if !defined(TEST) || (TEST == 4)
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
typedef boost::multiprecision::number<boost::multiprecision::cpp_dec_float<40> > dec_40;
|
||||
test_spots(dec_40(), "dec_40");
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -24,10 +24,14 @@ BOOST_AUTO_TEST_CASE( test_main )
|
||||
#endif
|
||||
#endif
|
||||
#if !defined(TEST) || (TEST == 2)
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
test_spots(boost::multiprecision::cpp_bin_float_quad());
|
||||
#endif
|
||||
#endif
|
||||
#if !defined(TEST) || (TEST == 3)
|
||||
#if (!defined(TEST) || (TEST == 3))
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
test_spots(boost::multiprecision::cpp_dec_float_50());
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -195,11 +195,15 @@ BOOST_AUTO_TEST_CASE( test_main )
|
||||
// These next 2 tests take effectively "forever" to compile with clang:
|
||||
//
|
||||
#if (!defined(TEST) || (TEST == 6)) && !defined(__clang__)
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
test_spots(boost::multiprecision::cpp_bin_float_quad(), "cpp_bin_float_quad");
|
||||
#endif
|
||||
#endif
|
||||
#if (!defined(TEST) || (TEST == 7)) && !defined(__clang__)
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
typedef boost::multiprecision::number<boost::multiprecision::cpp_bin_float<40> > dec_40;
|
||||
test_spots(dec_40(), "dec_40");
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -184,11 +184,15 @@ BOOST_AUTO_TEST_CASE( test_main )
|
||||
#endif
|
||||
#endif
|
||||
#if (!defined(TEST) || (TEST == 6)) && !defined(__clang__)
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
test_spots(boost::multiprecision::cpp_bin_float_quad(), "cpp_bin_float_quad");
|
||||
#endif
|
||||
#endif
|
||||
#if (!defined(TEST) || (TEST == 7)) && !defined(__clang__)
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
typedef boost::multiprecision::number<boost::multiprecision::cpp_bin_float<40> > dec_40;
|
||||
test_spots(dec_40(), "dec_40");
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -186,11 +186,15 @@ BOOST_AUTO_TEST_CASE( test_main )
|
||||
#endif
|
||||
#endif
|
||||
#if (!defined(TEST) || (TEST == 6)) && !defined(__clang__)
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
test_spots(boost::multiprecision::cpp_bin_float_quad(), "cpp_bin_float_quad");
|
||||
#endif
|
||||
#endif
|
||||
#if (!defined(TEST) || (TEST == 7)) && !defined(__clang__)
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
typedef boost::multiprecision::number<boost::multiprecision::cpp_bin_float<40> > dec_40;
|
||||
test_spots(dec_40(), "dec_40");
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -104,11 +104,15 @@ BOOST_AUTO_TEST_CASE( test_main )
|
||||
|
||||
#ifndef BOOST_MATH_NO_MP_TESTS
|
||||
#if !defined(TEST) || (TEST == 3)
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
test_spots(boost::multiprecision::cpp_bin_float_quad(), "cpp_bin_float_quad");
|
||||
#endif
|
||||
#endif
|
||||
#if !defined(TEST) || (TEST == 4)
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
using dec_40 = boost::multiprecision::number<boost::multiprecision::cpp_dec_float<40>>;
|
||||
test_spots(dec_40(), "dec_40");
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
@ -35,11 +35,15 @@ BOOST_AUTO_TEST_CASE( test_main )
|
||||
#endif
|
||||
#endif
|
||||
#if (!defined(TEST) || (TEST == 6)) && !defined(__clang__)
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
test_spots(boost::multiprecision::cpp_bin_float_quad(), "cpp_bin_float_quad");
|
||||
#endif
|
||||
#endif
|
||||
#if (!defined(TEST) || (TEST == 7)) && !defined(__clang__)
|
||||
#if defined(BOOST_MATH_RUN_MP_TESTS)
|
||||
typedef boost::multiprecision::number<boost::multiprecision::cpp_bin_float<40> > dec_40;
|
||||
test_spots(dec_40(), "dec_40");
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user