]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/phoenix/test/Jamfile
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / phoenix / test / Jamfile
1 #==============================================================================
2 # Copyright (c) 2003-2006 Joel de Guzman
3 # Copyright (c) 2014-2015 John Fletcher
4 #
5 # Use, modification and distribution is subject to the Boost Software
6 # License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7 # http://www.boost.org/LICENSE_1_0.txt)
8 #==============================================================================
9
10 # bring in rules for testing
11 import testing ;
12
13 project
14 : requirements
15 <toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE
16 <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS
17 <toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE
18 <toolset>msvc:<define>_CRT_SECURE_NO_WARNINGS
19 ;
20
21 local multi-threading = <library>/boost/thread
22 <threading>multi <define>BOOST_ALL_NO_LIB=1 ;
23
24 test-suite phoenix_core :
25 [ run core/custom_terminal.cpp ]
26 [ run core/intel_test.cpp ]
27 [ run core/primitives_tests.cpp ]
28 ;
29
30 test-suite phoenix_stdlib :
31 [ run stdlib/cmath.cpp ]
32 ;
33
34 test-suite phoenix_operator :
35 [ run operator/arithmetic_tests.cpp ]
36 [ run operator/bitwise_tests.cpp ]
37 [ run operator/comparison_tests.cpp ]
38 [ run operator/if_else_tests.cpp ]
39 [ run operator/io_tests.cpp ]
40 [ run operator/logical_tests.cpp ]
41 [ run operator/misc_binary_tests.cpp ]
42 [ run operator/self_tests.cpp ]
43 [ run operator/unary_tests.cpp ]
44 [ run operator/member.cpp ]
45 ;
46
47 test-suite phoenix_object :
48 [ run object/cast_tests.cpp ]
49 [ run object/new_delete_tests.cpp ]
50 ;
51
52 test-suite phoenix_function :
53 [ run function/adapt_function.cpp ]
54 [ run function/function_tests.cpp ]
55 [ run function/lazy_argument_tests.cpp ]
56 # [ run function/lazy_compose_tests.cpp ]
57 # [ run function/lazy_fold_tests.cpp ]
58 [ run function/lazy_list_tests.cpp ]
59 [ run function/lazy_list2_tests.cpp ]
60 [ run function/lazy_list3_tests.cpp ]
61 [ run function/lazy_make_pair_tests.cpp ]
62 # [ run function/lazy_ptr_tests.cpp ]
63 # [ run function/lazy_scan_tests.cpp ]
64 [ run function/lazy_templated_struct_tests.cpp ]
65 # [ run function/lazy_thunk_tests.cpp ]
66 [ run function/lazy_operator_tests.cpp ]
67 # [ run function/function_tests_phx2.cpp ]
68 ;
69
70 test-suite phoenix_bind :
71 [ run bind/bind_function_tests.cpp ]
72 [ run bind/bind_function_object_tests.cpp ]
73 # [ run bind/bind_function_object_tests_phx2.cpp ]
74 [ run bind/bind_member_function_tests.cpp ]
75 [ run bind/bind_member_variable_tests.cpp ]
76 [ run bind/bug5782.cpp ]
77 ;
78
79 test-suite phoenix_statement :
80 [ run statement/if_tests.cpp ]
81 [ run statement/loops_tests.cpp ]
82 [ run statement/switch_tests.cpp ]
83 [ run statement/exceptions.cpp ]
84 [ run statement/bug5715.cpp ]
85 ;
86
87 test-suite phoenix_container :
88 [ run container/container_tests1a.cpp ]
89 [ run container/container_tests1b.cpp ]
90 [ run container/container_tests2a.cpp ]
91 [ run container/container_tests2b.cpp ]
92 [ run container/container_tests3a.cpp ]
93 [ run container/container_tests3b.cpp ]
94 [ run container/container_tests4a.cpp ]
95 [ run container/container_tests4b.cpp ]
96 [ run container/container_tests5a.cpp ]
97 [ run container/container_tests5b.cpp ]
98 [ run container/container_tests6a.cpp ]
99 [ run container/container_tests6b.cpp ]
100 ;
101
102 test-suite phoenix_scope :
103 # [ run scope/lambda_tests.cpp ]
104 # [ run scope/lambda_tests1.cpp ]
105 [ run scope/lambda_tests1a.cpp ]
106 # [ run scope/lambda_tests1b.cpp ]
107 [ run scope/lambda_tests1b1p.cpp ]
108 [ run scope/lambda_tests1b1q.cpp ]
109 [ run scope/lambda_tests1b1r.cpp ]
110 [ run scope/lambda_tests1b1s.cpp ]
111 [ run scope/lambda_tests1b1t.cpp ]
112 [ run scope/lambda_tests1b2p.cpp ]
113 [ run scope/lambda_tests1b2q.cpp ]
114 [ run scope/lambda_tests1b2r.cpp ]
115 [ run scope/lambda_tests2.cpp ]
116 [ run scope/lambda_tests2a.cpp ]
117 [ run scope/lambda_tests3.cpp ]
118 [ run scope/lambda_tests3a.cpp ]
119 # [ run scope/lambda_tests3a1.cpp ]
120 [ run scope/lambda_tests3b.cpp ]
121 # [ run scope/lambda_tests_phx2.cpp ]
122 [ run scope/let_tests.cpp ]
123 [ run scope/let_tests_113.cpp ]
124 # [ run scope/let_tests_113a.cpp ]
125 [ run scope/let_tests_157.cpp ]
126 # [ run scope/let_tests_157a.cpp ]
127 [ run scope/let_tests_rest.cpp ]
128 [ run scope/more_lambda_tests.cpp ]
129 [ run scope/more_let_tests.cpp ]
130 # [ run scope/more_let_tests1.cpp ]
131 # [ run scope/more_let_tests2a.cpp ]
132 # [ run scope/more_let_tests2b.cpp ]
133 [ run scope/dynamic_tests.cpp ]
134 [ run scope/bug3289.cpp ]
135 [ run scope/bug8298.cpp ]
136 [ compile-fail scope/bug8298f.cpp ]
137 [ run scope/bug_000008.cpp : : : $(multi-threading) ]
138 ;
139
140 test-suite phoenix_algorithm :
141 [ run algorithm/for_each.cpp ]
142 [ run algorithm/for_each2.cpp ]
143 [ run algorithm/for_test.cpp ]
144 [ run algorithm/for_test2.cpp ]
145 [ run algorithm/iteration.cpp ]
146 [ run algorithm/transformation1.cpp ]
147 [ run algorithm/transformation2.cpp ]
148 [ run algorithm/transformation3.cpp ]
149 [ run algorithm/transformation4.cpp ]
150 [ run algorithm/querying.cpp ]
151 [ run algorithm/querying_find.cpp ]
152 [ run algorithm/querying2.cpp ]
153 [ run algorithm/querying_find2.cpp ]
154 ;
155
156 test-suite phoenix_boost_bind_compatibility :
157 [ run boost_bind_compatibility/bind_and_or_test.cpp ]
158 [ run boost_bind_compatibility/bind_const_test.cpp ]
159 [ run boost_bind_compatibility/bind_cv_test.cpp ]
160 [ run boost_bind_compatibility/bind_dm_test.cpp ]
161 # [ run boost_bind_compatibility/bind_dm1_test.cpp ]
162 [ run boost_bind_compatibility/bind_dm2_test.cpp ]
163 [ run boost_bind_compatibility/bind_dm3_test.cpp ]
164 [ run boost_bind_compatibility/bind_eq_test.cpp ]
165 [ run boost_bind_compatibility/bind_eq2_test.cpp ]
166 [ run boost_bind_compatibility/bind_eq3_test.cpp ]
167 [ run boost_bind_compatibility/bind_fn2_test.cpp ]
168 [ run boost_bind_compatibility/bind_function_test.cpp ]
169 [ run boost_bind_compatibility/bind_interoperation_test.cpp ]
170 [ run boost_bind_compatibility/bind_mf2_test.cpp ]
171 [ run boost_bind_compatibility/bind_not_test.cpp ]
172 [ run boost_bind_compatibility/bind_placeholder_test.cpp ]
173 [ run boost_bind_compatibility/bind_ref_test.cpp ]
174 [ run boost_bind_compatibility/bind_rel_test.cpp ]
175 [ run boost_bind_compatibility/bind_rvalue_test.cpp ]
176 [ run boost_bind_compatibility/bind_rv_sp_test.cpp ]
177 # [ run boost_bind_compatibility/bind_rv_sp1_test.cpp ]
178 # [ run boost_bind_compatibility/bind_rv_sp2_test.cpp ]
179 # [ run boost_bind_compatibility/bind_rv_sp3_test.cpp ]
180 # [ run boost_bind_compatibility/bind_rv_sp4_test.cpp ]
181 # [ run boost_bind_compatibility/bind_rv_sp5_test.cpp ]
182 # [ run boost_bind_compatibility/bind_rv_sp6_test.cpp ]
183 # [ run boost_bind_compatibility/bind_rv_sp7_test.cpp ]
184 [ run boost_bind_compatibility/bind_stateful_test.cpp ]
185 [ run boost_bind_compatibility/bind_test.cpp ]
186 # [ run boost_bind_compatibility/bind_void_dm_test.cpp ]
187 ;
188
189 test-suite phoenix_regression :
190 [ run regression/bug4853.cpp ]
191 [ run regression/bug5626.cpp ]
192 [ run regression/bug5824.cpp ]
193 # [ run regression/bug5875.cpp ]
194 [ run regression/bug5968.cpp ]
195 [ run regression/bug6040.cpp ]
196 [ run regression/bug6268.cpp ]
197 [ run regression/bug7165.cpp ]
198 [ compile-fail regression/bug7166.cpp ]
199 [ run regression/bug7624.cpp ]
200 ;
201
202 test-suite phoenix_include :
203 [ run include/bind.cpp ]
204 [ run include/core.cpp ]
205 [ run include/function.cpp ]
206 [ run include/fusion.cpp ]
207 [ run include/object.cpp ]
208 [ run include/operator.cpp ]
209 [ run include/scope.cpp ]
210 # [ run include/spirit.cpp ]
211 # [ run include/spirit_no_specialize.cpp ]
212 [ run include/statement.cpp ]
213 [ run include/stl.cpp ]
214 [ run include/version.cpp ]
215 [ run include/bind/bind_member_function.cpp ]
216 [ run include/bind/bind_member_variable.cpp ]
217 [ run include/core/actor.cpp ]
218 [ run include/core/argument.cpp ]
219 [ run include/core/arity.cpp ]
220 [ run include/core/debug.cpp ]
221 [ run include/core/domain.cpp ]
222 [ run include/core/environment.cpp ]
223 [ run include/core/expression.cpp ]
224 [ run include/core/function_equal.cpp ]
225 [ run include/core/is_actor.cpp ]
226 [ run include/core/is_nullary.cpp ]
227 [ run include/core/limits.cpp ]
228 [ run include/core/meta_grammar.cpp ]
229 [ run include/core/nothing.cpp ]
230 [ run include/core/reference.cpp ]
231 [ run include/core/terminal.cpp ]
232 # [ run include/core/bug7730.cpp ]
233 [ run include/core/value.cpp ]
234 [ run include/core/visit_each.cpp ]
235 [ run include/function/function.cpp : : : : function_function ]
236 [ run include/function/lazy_headers.cpp ]
237 [ run include/fusion/at.cpp ]
238 [ run include/object/const_cast.cpp ]
239 [ run include/object/construct.cpp ]
240 [ run include/object/delete.cpp ]
241 [ run include/object/dynamic_cast.cpp ]
242 [ run include/object/new.cpp ]
243 [ run include/object/reinterpret_cast.cpp ]
244 [ run include/object/static_cast.cpp ]
245 [ run include/operator/arithmetic.cpp ]
246 [ run include/operator/bitwise.cpp ]
247 [ run include/operator/comparison.cpp ]
248 [ run include/operator/if_else.cpp ]
249 [ run include/operator/io.cpp ]
250 [ run include/operator/logical.cpp ]
251 [ run include/operator/member.cpp : : : : operator_member ]
252 [ run include/operator/self.cpp ]
253 [ run include/scope/dynamic.cpp ]
254 [ run include/scope/lambda.cpp ]
255 [ run include/scope/let.cpp ]
256 [ run include/scope/local_variable.cpp ]
257 [ run include/scope/scoped_environment.cpp ]
258 [ run include/scope/this.cpp ]
259 [ run include/statement/do_while.cpp ]
260 [ run include/statement/for.cpp ]
261 [ run include/statement/if.cpp ]
262 [ run include/statement/sequence.cpp ]
263 [ run include/statement/switch.cpp ]
264 [ run include/statement/throw.cpp ]
265 [ run include/statement/try_catch.cpp ]
266 [ run include/statement/while.cpp ]
267 [ run include/stl/algorithm.cpp ]
268 [ run include/stl/container.cpp ]
269 [ run include/stl/container/container.cpp : : : : container_container ]
270 [ run include/stl/algorithm/iteration.cpp : : : : include_iteration ]
271 [ run include/stl/algorithm/querying.cpp : : : : include_querying ]
272 [ run include/stl/algorithm/transformation.cpp ]
273 [ run include/support/iterate.cpp ]
274 [ run include/support/preprocessor/round.cpp ]
275 ;