]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/multiprecision/test/math/test_carlson_4.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / multiprecision / test / math / test_carlson_4.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 TEST4
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 ".*", // test type(s)
25 "RG: two values the same", // test data group
26 ".*", 10000, 700); // test function
27 add_expected_result(
28 ".*", // compiler
29 ".*", // stdlib
30 ".*", // platform
31 ".*", // test type(s)
32 ".*RJ.*", // test data group
33 ".*", 2700, 250); // test function
34 add_expected_result(
35 ".*", // compiler
36 ".*", // stdlib
37 ".*", // platform
38 ".*", // test type(s)
39 ".*", // test data group
40 ".*", 40, 20); // test function
41 //
42 // Finish off by printing out the compiler/stdlib/platform names,
43 // we do this to make it easier to mark up expected error rates.
44 //
45 std::cout << "Tests run with " << BOOST_COMPILER << ", "
46 << BOOST_STDLIB << ", " << BOOST_PLATFORM << std::endl;
47 }
48
49 template <class T>
50 void test(T t, const char* p)
51 {
52 test_spots(t, p);
53 }
54
55 BOOST_AUTO_TEST_CASE(test_main)
56 {
57 using namespace boost::multiprecision;
58 expected_results();
59 //
60 // Test at:
61 // 18 decimal digits: tests 80-bit long double approximations
62 // 30 decimal digits: tests 128-bit long double approximations
63 // 35 decimal digits: tests arbitrary precision code
64 //
65 ALL_TESTS
66 }