From 4638c8dfd4f94881c0319cc52ee9be2666912943 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 10 Dec 2014 18:38:09 +0000 Subject: [PATCH] [non-central-t] Reorganize tests a little. --- test/test_nc_t.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_nc_t.cpp b/test/test_nc_t.cpp index 371aaec78..15088d190 100644 --- a/test/test_nc_t.cpp +++ b/test/test_nc_t.cpp @@ -838,9 +838,12 @@ BOOST_AUTO_TEST_CASE( test_main ) #ifdef TEST_FLOAT test_accuracy(0.0F, "float"); // Test float. + test_big_df(0.F); // float #endif #ifdef TEST_DOUBLE test_accuracy(0.0, "double"); // Test double. + test_big_df(0.); // double + test_ignore_policy(0.0); #endif #ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS #ifdef TEST_LDOUBLE @@ -853,9 +856,6 @@ BOOST_AUTO_TEST_CASE( test_main ) #endif #endif /* */ - test_ignore_policy(0.0); - test_big_df(0.F); // float - test_big_df(0.); // double } // BOOST_AUTO_TEST_CASE( test_main )