Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / multi_index / test / test_all_main.cpp
1 /* Boost.MultiIndex test suite.
2  *
3  * Copyright 2003-2013 Joaquin M Lopez Munoz.
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"
20 #include "test_key_extractors.hpp"
21 #include "test_list_ops.hpp"
22 #include "test_modifiers.hpp"
23 #include "test_mpl_ops.hpp"
24 #include "test_observers.hpp"
25 #include "test_projection.hpp"
26 #include "test_range.hpp"
27 #include "test_rearrange.hpp"
28 #include "test_safe_mode.hpp"
29 #include "test_serialization.hpp"
30 #include "test_set_ops.hpp"
31 #include "test_special_set_ops.hpp"
32 #include "test_update.hpp"
33
34 int main()
35 {
36   test_basic();
37   test_capacity();
38   test_comparison();
39   test_composite_key();
40   test_conv_iterators();
41   test_copy_assignment();
42   test_hash_ops();
43   test_iterators();
44   test_key_extractors();
45   test_list_ops();
46   test_modifiers();
47   test_mpl_ops();
48   test_observers();
49   test_projection();
50   test_range();
51   test_rearrange();
52   test_safe_mode();
53   test_serialization();
54   test_set_ops();
55   test_special_set_ops();
56   test_update();
57
58   return boost::report_errors();
59 }