]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/multi_index/test/test_all_main.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / multi_index / test / test_all_main.cpp
CommitLineData
7c673cae
FG
1/* Boost.MultiIndex test suite.
2 *
92f5a8d4 3 * Copyright 2003-2018 Joaquin M Lopez Munoz.
7c673cae
FG
4 * Distributed under the Boost Software License, Version 1.0.
5 * (See accompanying file LICENSE_1_0.txt or copy at
6 * http://www.boost.org/LICENSE_1_0.txt)
7 *
8 * See http://www.boost.org/libs/multi_index for library home page.
9 */
10
11#include <boost/detail/lightweight_test.hpp>
12#include "test_basic.hpp"
13#include "test_capacity.hpp"
14#include "test_comparison.hpp"
15#include "test_composite_key.hpp"
16#include "test_conv_iterators.hpp"
17#include "test_copy_assignment.hpp"
18#include "test_hash_ops.hpp"
19#include "test_iterators.hpp"
92f5a8d4 20#include "test_key.hpp"
7c673cae
FG
21#include "test_key_extractors.hpp"
22#include "test_list_ops.hpp"
23#include "test_modifiers.hpp"
24#include "test_mpl_ops.hpp"
25#include "test_observers.hpp"
26#include "test_projection.hpp"
27#include "test_range.hpp"
28#include "test_rank_ops.hpp"
29#include "test_rearrange.hpp"
30#include "test_safe_mode.hpp"
31#include "test_serialization.hpp"
32#include "test_set_ops.hpp"
33#include "test_special_set_ops.hpp"
34#include "test_update.hpp"
35
36int main()
37{
38 test_basic();
39 test_capacity();
40 test_comparison();
41 test_composite_key();
42 test_conv_iterators();
43 test_copy_assignment();
44 test_hash_ops();
45 test_iterators();
92f5a8d4 46 test_key();
7c673cae
FG
47 test_key_extractors();
48 test_list_ops();
49 test_modifiers();
50 test_mpl_ops();
51 test_observers();
52 test_projection();
53 test_range();
54 test_rank_ops();
55 test_rearrange();
56 test_safe_mode();
57 test_serialization();
58 test_set_ops();
59 test_special_set_ops();
60 test_update();
61
62 return boost::report_errors();
63}