]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/unordered/test/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / unordered / test / Jamfile.v2
1
2 # Copyright 2006-2008 Daniel James.
3 # Distributed under the Boost Software License, Version 1.0. (See accompanying
4 # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 import testing ;
7
8 project unordered-test/unordered
9 : requirements
10 <warnings>all
11 <toolset>intel:<warnings>on
12 # Would be nice to define -Wundef, but I'm getting warnings from
13 # Boost.Preprocessor on trunk.
14 <toolset>gcc:<cxxflags>"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter -Wconversion -Wfloat-equal -Wshadow"
15 <toolset>darwin:<cxxflags>"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter -Wconversion -Wfloat-equal -Wshadow"
16 <toolset>clang:<cxxflags>"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter -Wsign-conversion -Wconversion -Wfloat-equal -Wshadow"
17 <toolset>msvc:<cxxflags>"/wd4494"
18 ;
19
20 #alias framework : /boost/test//boost_unit_test_framework ;
21 alias framework : ;
22
23 test-suite unordered
24 :
25 [ run unordered/fwd_set_test.cpp ]
26 [ run unordered/fwd_map_test.cpp ]
27 [ run unordered/allocator_traits.cpp ]
28 [ run unordered/minimal_allocator.cpp ]
29 [ run unordered/compile_set.cpp ]
30 [ run unordered/compile_map.cpp ]
31 [ run unordered/compile_map.cpp : :
32 : <define>BOOST_UNORDERED_USE_ALLOCATOR_TRAITS=0
33 : compile_map_unordered_allocator ]
34 [ run unordered/noexcept_tests.cpp ]
35 [ run unordered/link_test_1.cpp unordered/link_test_2.cpp ]
36 [ run unordered/incomplete_test.cpp ]
37 [ run unordered/simple_tests.cpp ]
38 [ run unordered/equivalent_keys_tests.cpp ]
39 [ run unordered/constructor_tests.cpp ]
40 [ run unordered/copy_tests.cpp ]
41 [ run unordered/move_tests.cpp ]
42 [ run unordered/assign_tests.cpp ]
43 [ run unordered/insert_tests.cpp ]
44 [ run unordered/insert_stable_tests.cpp ]
45 [ run unordered/insert_hint_tests.cpp ]
46 [ run unordered/unnecessary_copy_tests.cpp ]
47 [ run unordered/erase_tests.cpp ]
48 [ run unordered/erase_equiv_tests.cpp ]
49 [ run unordered/find_tests.cpp ]
50 [ run unordered/at_tests.cpp ]
51 [ run unordered/bucket_tests.cpp ]
52 [ run unordered/load_factor_tests.cpp ]
53 [ run unordered/rehash_tests.cpp ]
54 [ run unordered/equality_tests.cpp ]
55 [ run unordered/swap_tests.cpp ]
56
57 [ run unordered/compile_set.cpp : :
58 : <define>BOOST_UNORDERED_USE_MOVE
59 : bmove_compile_set ]
60 [ run unordered/compile_map.cpp : :
61 : <define>BOOST_UNORDERED_USE_MOVE
62 : bmove_compile_map ]
63 [ run unordered/copy_tests.cpp : :
64 : <define>BOOST_UNORDERED_USE_MOVE
65 : bmove_copy ]
66 [ run unordered/move_tests.cpp : :
67 : <define>BOOST_UNORDERED_USE_MOVE
68 : bmove_move ]
69 [ run unordered/assign_tests.cpp : :
70 : <define>BOOST_UNORDERED_USE_MOVE
71 : bmove_assign ]
72 ;
73
74 test-suite unordered-exception
75 :
76 [ run exception/constructor_exception_tests.cpp framework ]
77 [ run exception/copy_exception_tests.cpp framework ]
78 [ run exception/assign_exception_tests.cpp framework ]
79 [ run exception/move_assign_exception_tests.cpp framework ]
80 [ run exception/insert_exception_tests.cpp framework ]
81 [ run exception/erase_exception_tests.cpp framework ]
82 [ run exception/rehash_exception_tests.cpp framework ]
83 [ run exception/swap_exception_tests.cpp framework : : :
84 <define>BOOST_UNORDERED_SWAP_METHOD=2 ]
85 ;