Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / multiprecision / test / math / test_carlson_2.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 https://www.boost.org/LICENSE_1_0.txt
5
6 #include "setup.hpp"
7 #include "table_type.hpp"
8 #define TEST_UDT
9 #define TEST2
10
11 #include <boost/math/special_functions/math_fwd.hpp>
12 #include "libs/math/test/test_carlson.hpp"
13
14 void expected_results()
15 {
16    //
17    // Define the max and mean errors expected for
18    // various compilers and platforms.
19    //
20    add_expected_result(
21        ".*",               // compiler
22        ".*",               // stdlib
23        ".*",               // platform
24        ".*gmp_float<0>.*", // test type(s)
25        ".*RJ.*",           // test data group
26        ".*", 40000, 4000); // test function
27    add_expected_result(
28        ".*",               // compiler
29        ".*",               // stdlib
30        ".*",               // platform
31        ".*gmp_float<0>.*", // test type(s)
32        ".*RC.*",           // test data group
33        ".*", 7000, 1000);  // test function
34    add_expected_result(
35        ".*",             // compiler
36        ".*",             // stdlib
37        ".*",             // platform
38        ".*",             // test type(s)
39        ".*RJ.*",         // test data group
40        ".*", 2700, 250); // test function
41    add_expected_result(
42        ".*",          // compiler
43        ".*",          // stdlib
44        ".*",          // platform
45        ".*",          // test type(s)
46        ".*",          // test data group
47        ".*", 40, 20); // test function
48    //
49    // Finish off by printing out the compiler/stdlib/platform names,
50    // we do this to make it easier to mark up expected error rates.
51    //
52    std::cout << "Tests run with " << BOOST_COMPILER << ", "
53              << BOOST_STDLIB << ", " << BOOST_PLATFORM << std::endl;
54 }
55
56 template <class T>
57 void test(T t, const char* p)
58 {
59    test_spots(t, p);
60 }
61
62 BOOST_AUTO_TEST_CASE(test_main)
63 {
64    using namespace boost::multiprecision;
65    expected_results();
66    //
67    // Test at:
68    // 18 decimal digits: tests 80-bit long double approximations
69    // 30 decimal digits: tests 128-bit long double approximations
70    // 35 decimal digits: tests arbitrary precision code
71    //
72    ALL_TESTS
73 }