]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/atomic/test/native_api.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / atomic / test / native_api.cpp
CommitLineData
7c673cae
FG
1// Copyright (c) 2011 Helge Bahmann
2//
3// Distributed under the Boost Software License, Version 1.0.
4// See accompanying file LICENSE_1_0.txt or copy at
5// http://www.boost.org/LICENSE_1_0.txt)
6
7#include <boost/atomic.hpp>
8
9#include <boost/config.hpp>
10#include <boost/cstdint.hpp>
7c673cae
FG
11
12#include "api_test_helpers.hpp"
13
14int main(int, char *[])
15{
16 test_flag_api();
17
18 test_integral_api<char>();
19 test_integral_api<signed char>();
20 test_integral_api<unsigned char>();
21 test_integral_api<boost::uint8_t>();
22 test_integral_api<boost::int8_t>();
23 test_integral_api<short>();
24 test_integral_api<unsigned short>();
25 test_integral_api<boost::uint16_t>();
26 test_integral_api<boost::int16_t>();
27 test_integral_api<int>();
28 test_integral_api<unsigned int>();
29 test_integral_api<boost::uint32_t>();
30 test_integral_api<boost::int32_t>();
31 test_integral_api<long>();
32 test_integral_api<unsigned long>();
33 test_integral_api<boost::uint64_t>();
34 test_integral_api<boost::int64_t>();
35 test_integral_api<long long>();
36 test_integral_api<unsigned long long>();
37#if defined(BOOST_HAS_INT128)
38 test_integral_api<boost::int128_type>();
39 test_integral_api<boost::uint128_type>();
40#endif
41
42 test_constexpr_ctor<char>();
43 test_constexpr_ctor<short>();
44 test_constexpr_ctor<int>();
45 test_constexpr_ctor<long>();
46 test_constexpr_ctor<int*>();
47
48 test_pointer_api<int>();
49
50 test_enum_api();
51
52 test_struct_api<test_struct<boost::uint8_t> >();
53 test_struct_api<test_struct<boost::uint16_t> >();
54 test_struct_api<test_struct<boost::uint32_t> >();
55 test_struct_api<test_struct<boost::uint64_t> >();
56#if defined(BOOST_HAS_INT128)
57 test_struct_api<test_struct<boost::uint128_type> >();
58#endif
59
60 // https://svn.boost.org/trac/boost/ticket/10994
61 test_struct_x2_api<test_struct_x2<boost::uint64_t> >();
62
63 // https://svn.boost.org/trac/boost/ticket/9985
64 test_struct_api<test_struct<double> >();
65
66 test_large_struct_api();
67
68 // Test that boost::atomic<T> only requires T to be trivially copyable.
69 // Other non-trivial constructors are allowed.
70 test_struct_with_ctor_api();
71
72 return boost::report_errors();
73}