Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / multiprecision / test / math / test_zeta.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
10 #include <boost/math/special_functions/math_fwd.hpp>
11 #include "libs/math/test/test_zeta.hpp"
12
13 void expected_results()
14 {
15    //
16    // Define the max and mean errors expected for
17    // various compilers and platforms.
18    //
19    add_expected_result(
20        ".*",                          // compiler
21        ".*",                          // stdlib
22        ".*",                          // platform
23        ".*",                          // test type(s)
24        ".*Random values less than 1", // test data group
25        ".*", 6000, 3000);             // test function
26 #ifdef BOOST_INTEL
27    add_expected_result(
28        ".*",                           // compiler
29        ".*",                           // stdlib
30        ".*",                           // platform
31        "float128",                     // test type(s)
32        ".*close to and less than 1.*", // test data group
33        ".*", 10000000L, 2000000L);     // test function
34 #endif
35    add_expected_result(
36        ".*",             // compiler
37        ".*",             // stdlib
38        ".*",             // platform
39        ".*",             // test type(s)
40        ".*",             // test data group
41        ".*", 1000, 200); // test function
42    //
43    // Finish off by printing out the compiler/stdlib/platform names,
44    // we do this to make it easier to mark up expected error rates.
45    //
46    std::cout << "Tests run with " << BOOST_COMPILER << ", "
47              << BOOST_STDLIB << ", " << BOOST_PLATFORM << std::endl;
48 }
49
50 template <class T>
51 void test(T t, const char* p)
52 {
53    test_zeta(t, p);
54 }
55
56 BOOST_AUTO_TEST_CASE(test_main)
57 {
58    using namespace boost::multiprecision;
59    expected_results();
60    //
61    // Test at:
62    //  9 decimal digits: tests the least wide arbitrary precision code
63    // 18 decimal digits: tests 80-bit long double approximations
64    // 30 decimal digits: tests 128-bit long double approximations
65    // 35 decimal digits: tests arbitrary precision code
66    //
67    ALL_TESTS
68 }