summaryrefslogtreecommitdiff
path: root/libs/math/test/test_nc_t.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/math/test/test_nc_t.cpp')
-rw-r--r--libs/math/test/test_nc_t.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/math/test/test_nc_t.cpp b/libs/math/test/test_nc_t.cpp
index 371aaec78..15088d190 100644
--- a/libs/math/test/test_nc_t.cpp
+++ b/libs/math/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 )