2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Eliminated test_exec_monitor

[SVN r82782]
This commit is contained in:
Gennadiy Rozental
2013-02-08 05:09:47 +00:00
parent 68837b272e
commit 3bc111cdb7
155 changed files with 765 additions and 713 deletions

View File

@@ -16,7 +16,8 @@
#endif
#include <boost/math/concepts/real_concept.hpp> // for real_concept
#include <boost/test/test_exec_monitor.hpp> // Boost.Test
#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp> // Boost.Test
#include <boost/test/floating_point_comparison.hpp>
#include <boost/math/distributions/triangular.hpp>
@@ -528,7 +529,7 @@ void test_spots(RealType)
check_out_of_range<triangular_distribution<RealType> >(-1, 0, 1);
} // template <class RealType>void test_spots(RealType)
int test_main(int, char* [])
BOOST_AUTO_TEST_CASE( test_main )
{
// double toleps = std::numeric_limits<double>::epsilon(); // 5 eps as a fraction.
double tol5eps = std::numeric_limits<double>::epsilon() * 5; // 5 eps as a fraction.
@@ -680,8 +681,8 @@ int test_main(int, char* [])
"to pass.</note>" << std::cout;
#endif
return 0;
} // int test_main(int, char* [])
} // BOOST_AUTO_TEST_CASE( test_main )
/*