Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / math / test / float128 / test_digamma.cpp
1 ///////////////////////////////////////////////////////////////
2 //  Copyright 2011 John Maddock. Distributed under the Boost
3 //  Software License, Version 1.0. (See accompanying file
4 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_
5
6 #include "setup.hpp"
7 #include "table_type.hpp"
8
9 #include <boost/math/special_functions/digamma.hpp>
10 #include "libs/math/test/test_digamma.hpp"
11
12 void expected_results()
13 {
14    //
15    // Define the max and mean errors expected for
16    // various compilers and platforms.
17    //
18    add_expected_result(
19       ".*",                          // compiler
20       ".*",                          // stdlib
21       ".*",                          // platform
22       ".*",                          // test type(s)
23       ".*",                          // test data group
24       ".*", 350, 100);                 // test function
25    //
26    // Finish off by printing out the compiler/stdlib/platform names,
27    // we do this to make it easier to mark up expected error rates.
28    //
29    std::cout << "Tests run with " << BOOST_COMPILER << ", "
30       << BOOST_STDLIB << ", " << BOOST_PLATFORM << std::endl;
31 }
32
33 template <class T>
34 void test(T t, const char* p)
35 {
36    test_digamma(t, p);
37 }
38
39 BOOST_AUTO_TEST_CASE( test_main )
40 {
41    expected_results();
42    ALL_TESTS
43 }
44