Boost logo

Boost-Commit :

From: john_at_[hidden]
Date: 2008-04-11 13:54:48


Author: johnmaddock
Date: 2008-04-11 13:54:47 EDT (Fri, 11 Apr 2008)
New Revision: 44186
URL: http://svn.boost.org/trac/boost/changeset/44186

Log:
Disable long double tests on unsupported platforms.
Text files modified:
   trunk/libs/math/test/pow_test.cpp | 2 ++
   1 files changed, 2 insertions(+), 0 deletions(-)

Modified: trunk/libs/math/test/pow_test.cpp
==============================================================================
--- trunk/libs/math/test/pow_test.cpp (original)
+++ trunk/libs/math/test/pow_test.cpp 2008-04-11 13:54:47 EDT (Fri, 11 Apr 2008)
@@ -157,6 +157,7 @@
     cout << "Testing with double precision bases and negative big exponents" << endl;
     test_with_big_exponents<double, -1>();
 
+#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
     cout << "Testing with long double precision bases and positive small exponents" << endl;
     test_with_small_exponents<long double, 1>();
     cout << "Testing with long double precision bases and negative small exponents" << endl;
@@ -176,6 +177,7 @@
     test_with_big_exponents<concepts::real_concept, 1>();
     cout << "Testing with concepts::real_concept precision bases and negative big exponents" << endl;
     test_with_big_exponents<concepts::real_concept, -1>();
+#endif
 
     test_return_types();
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk