summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/tti/test/Jamfile.v2
blob: e63ab201aaf8968121d9183ea788fb63042b3e4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
#  (C) Copyright Edward Diener 2011,2012
#  Use, modification and distribution are subject to the Boost Software License,
#  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
#  http://www.boost.org/LICENSE_1_0.txt).
#
# Tti testing Jamfile
#

import testing ;

project tti_tests : requirements <warnings>on
                                 <toolset>gcc:<warnings>all
                                 <toolset>msvc:<warnings>all
                                 <toolset>gcc-4.3.0:<cxxflags>-Wno-variadic-macros
                                 <toolset>gcc-4.4.0:<cxxflags>-Wno-variadic-macros
                                 <toolset>gcc-4.4.7:<cxxflags>-Wno-variadic-macros
                                 <toolset>gcc-4.5.0:<cxxflags>-Wno-variadic-macros
                                 <toolset>gcc-4.5.0:<linkflags>"-Wl,--enable-auto-import"
                                 <toolset>gcc-4.5.2:<cxxflags>-Wno-variadic-macros
                                 <toolset>gcc-4.6.0:<cxxflags>-Wno-variadic-macros
                                 <toolset>gcc-4.6.1:<cxxflags>-Wno-variadic-macros
                                 <toolset>gcc-4.6.2:<cxxflags>-Wno-variadic-macros
                                 <toolset>gcc-4.6.3:<cxxflags>-Wno-variadic-macros
                                 <toolset>gcc-4.7.0:<cxxflags>-Wno-variadic-macros
                                 <toolset>gcc-4.7.2:<cxxflags>-Wno-variadic-macros
                                 ;
                                 
#
# Member functions composite syntax
#
alias ttimfsig
    :
        [ run test_has_member.cpp ]
        [ compile test_has_member_compile.cpp ]
        [ compile-fail test_has_member_fail.cpp ]
        [ compile-fail test_has_member_fail2.cpp ]
        [ compile-fail test_has_member_fail3.cpp ]
    ;

#
# Member functions composite syntax, cv-qualified
#
alias ttimfsigcv
    :
        [ run test_has_member_cv.cpp ]
        [ compile test_has_member_cv_compile.cpp ]
        [ compile-fail test_has_member_cv_fail.cpp ]
        [ compile-fail test_has_member_cv_fail2.cpp ]
        [ compile-fail test_has_member_cv_fail3.cpp ]
        [ compile-fail test_has_member_cv_fail4.cpp ]
        [ compile-fail test_has_member_cv_fail5.cpp ]
    ;

#
# Member data
#
alias ttimd
    :
        [ run test_has_mem_data.cpp ]
        [ run test_has_mem_data2.cpp ]
        [ compile test_has_mem_data_compile.cpp ]
        [ compile-fail test_has_mem_data_fail.cpp ]
        [ compile-fail test_has_mem_data_fail2.cpp ]
        [ compile-fail test_has_mem_data_fail3.cpp ]
    ;

#
# Member functions specific syntax
#
alias ttimfn
    :
        [ run test_has_mem_fun.cpp ]
        [ compile test_has_mem_fun_compile.cpp ]
        [ compile-fail test_has_mem_fun_fail.cpp ]
        [ compile-fail test_has_mem_fun_fail2.cpp ]
        [ compile-fail test_has_mem_fun_fail3.cpp ]
    ;

#
# Member functions specific syntax, cv-qualified
#
alias ttimfncv
    :
        [ run test_has_mem_fun_cv.cpp ]
        [ compile test_has_mem_fun_cv_compile.cpp ]
        [ compile-fail test_has_mem_fun_cv_fail.cpp ]
        [ compile-fail test_has_mem_fun_cv_fail2.cpp ]
        [ compile-fail test_has_mem_fun_cv_fail3.cpp ]
        [ compile-fail test_has_mem_fun_cv_fail4.cpp ]
        [ compile-fail test_has_mem_fun_cv_fail5.cpp ]
        [ compile-fail test_has_mem_fun_cv_fail6.cpp ]
    ;

#
# Static member functions composite syntax
#
alias ttismfsig
    :
        [ run test_has_static_member.cpp ]
        [ compile test_has_static_member_compile.cpp ]
        [ compile-fail test_has_static_member_fail.cpp ]
        [ compile-fail test_has_static_member_fail2.cpp ]
    ;

#
# Static member data
#
alias ttismd
    :
        [ run test_has_static_mem_data.cpp ]
        [ compile test_has_static_mem_data_compile.cpp ]
        [ compile-fail test_has_static_mem_data_fail.cpp ]
        [ compile-fail test_has_static_mem_data_fail2.cpp ]
        [ compile-fail test_has_static_mem_data_fail3.cpp ]
    ;

#
# Static member functions
#
alias ttismfn
    :
        [ run test_has_static_mem_fun.cpp ]
        [ compile test_has_static_mem_fun_compile.cpp ]
        [ compile-fail test_has_static_mem_fun_fail.cpp ]
        [ compile-fail test_has_static_mem_fun_fail2.cpp ]
    ;

#
# Member or static member data
#
alias ttidata
    :
        [ run test_has_data.cpp ]
        [ compile test_has_data_compile.cpp ]
        [ compile-fail test_has_data_fail.cpp ]
        [ compile-fail test_has_data_fail2.cpp ]
        [ compile-fail test_has_data_fail3.cpp ]
        [ compile-fail test_has_data_fail4.cpp ]
        [ compile-fail test_has_data_fail5.cpp ]
        [ compile-fail test_has_data_fail6.cpp ]
    ;

#
# Member or static member function
#
alias ttifun
    :
        [ run test_has_fun.cpp ]
        [ compile test_has_fun_compile.cpp ]
        [ compile-fail test_has_fun_fail.cpp ]
        [ compile-fail test_has_fun_fail2.cpp ]
        [ compile-fail test_has_fun_fail3.cpp ]
        [ compile-fail test_has_fun_fail4.cpp ]
        [ compile-fail test_has_fun_fail5.cpp ]
    ;

#
# Templates 
#
alias ttitmp
    :
        [ run test_has_template.cpp : : : <define>BOOST_PP_VARIADICS=0 ]
        [ compile test_has_template_compile.cpp : <define>BOOST_PP_VARIADICS=0 ]
        [ compile-fail test_has_template_fail.cpp : <define>BOOST_PP_VARIADICS=0 ]
        [ compile-fail test_has_template_fail2.cpp : <define>BOOST_PP_VARIADICS=0 ]
        [ compile-fail test_has_template_fail3.cpp : <define>BOOST_PP_VARIADICS=0 ]
        [ compile-fail test_has_template_fail4.cpp : <define>BOOST_PP_VARIADICS=0 ]
    ;

#
# Templates, check params
#
alias ttitmpcp
    :
        [ run test_has_template_cp.cpp : : : <define>BOOST_PP_VARIADICS=0 ]
        [ compile test_has_template_cp_compile.cpp : <define>BOOST_PP_VARIADICS=0 ]
        [ compile-fail test_has_template_cp_fail.cpp : <define>BOOST_PP_VARIADICS=0 ]
        [ compile-fail test_has_template_cp_fail2.cpp : <define>BOOST_PP_VARIADICS=0 ]
        [ compile-fail test_has_template_cp_fail3.cpp : <define>BOOST_PP_VARIADICS=0 ]
        [ compile-fail test_has_template_cp_fail4.cpp : <define>BOOST_PP_VARIADICS=0 ]
    ;
    
#
# Type
#
alias ttity
    :
        [ run test_has_type.cpp ]
        [ compile test_has_type_compile.cpp ]
        [ compile-fail test_has_type_fail.cpp ]
        [ compile-fail test_has_type_fail2.cpp ]
        [ compile-fail test_has_type_fail3.cpp ]
        [ run test_has_type_ct.cpp ]
        [ compile test_has_type_ct_compile.cpp ]
        [ compile-fail test_has_type_ct_fail.cpp ]
        [ compile-fail test_has_type_ct_fail2.cpp ]
        [ compile-fail test_has_type_ct_fail3.cpp ]
        [ compile-fail test_has_type_ct_fail4.cpp ]
        [ compile-fail test_has_type_ct_fail5.cpp ]
    ;

#
# Nested type
#
alias ttimemty
    :
        [ run test_mem_type.cpp ]
        [ compile test_mem_type_compile.cpp ]
    ;
#
# All of tti, non-variadic macros
#
alias ttinovm : ttimfsig ttimfsigcv ttimd ttimfn ttimfncv ttismfsig ttismd ttismfn ttidata ttifun ttitmp ttitmpcp ttity ttimemty ;

alias ttitmpv : : 
        <toolset>gcc
        <toolset-gcc:version>3.4.2
    ;
    
alias ttitmpv : : 
        <toolset>gcc
        <toolset-gcc:version>3.4.5
    ;
    
alias ttitmpv : : 
        <toolset>gcc
        <toolset-gcc:version>4.1.2
    ;
    
alias ttitmpv : : 
        <toolset>gcc
        <toolset-gcc:version>4.2.1
    ;
    
#
# Templates, variadic macro
#
alias ttitmpv
    :
        [ run test_has_template.cpp : : : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 : 
          test_has_template_v ]
        [ compile test_has_template_compile.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 : 
          test_has_template_compile_v ]
        [ compile-fail test_has_template_fail.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 : 
          test_has_template_fail_v ]
        [ compile-fail test_has_template_fail2.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 : 
          test_has_template_fail2_v ]
        [ compile-fail test_has_template_fail3.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 : 
          test_has_template_fail3_v ]
        [ compile-fail test_has_template_fail4.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 : 
          test_has_template_fail4_v ]
    ;

alias ttitmpcpv : : 
        <toolset>gcc
        <toolset-gcc:version>3.4.2
    ;
    
alias ttitmpcpv : : 
        <toolset>gcc
        <toolset-gcc:version>3.4.5
    ;
    
alias ttitmpcpv : : 
        <toolset>gcc
        <toolset-gcc:version>4.1.2
    ;
    
alias ttitmpcpv : : 
        <toolset>gcc
        <toolset-gcc:version>4.2.1
    ;
    
#
# Templates, variadic macro, check params, non-variadic syntax
#
alias ttitmpcpv
    :
        [ run test_has_template_cp.cpp : : : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 : 
          test_has_template_cp_v ]
        [ compile test_has_template_cp_compile.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 : 
          test_has_template_cp_compile_v ]
        [ compile-fail test_has_template_cp_fail.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 : 
          test_has_template_cp_fail_v ]
        [ compile-fail test_has_template_cp_fail2.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 : 
          test_has_template_cp_fail2_v ]
        [ compile-fail test_has_template_cp_fail3.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 : 
          test_has_template_cp_fail3_v ]
        [ compile-fail test_has_template_cp_fail4.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 : 
          test_has_template_cp_fail4_v  ]
    ;
    
alias ttitmpcpvm : : 
        <toolset>gcc
        <toolset-gcc:version>3.4.2
    ;
    
alias ttitmpcpvm : : 
        <toolset>gcc
        <toolset-gcc:version>3.4.5
    ;
    
alias ttitmpcpvm : : 
        <toolset>gcc
        <toolset-gcc:version>4.1.2
    ;
    
alias ttitmpcpvm : : 
        <toolset>gcc
        <toolset-gcc:version>4.2.1
    ;
    
#
# Templates, variadic macro, check params, variadic syntax
#
alias ttitmpcpvm
    :
        [ run test_vm_has_template_cp.cpp : : : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 ]
        [ compile test_vm_has_template_cp_compile.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 ]
        [ compile-fail test_vm_has_template_cp_fail.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 ]
        [ compile-fail test_vm_has_template_cp_fail2.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 ]
        [ compile-fail test_vm_has_template_cp_fail3.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 ]
        [ compile-fail test_vm_has_template_cp_fail4.cpp : 
          <toolset>gcc:<cxxflags>-std=c++0x
          <toolset>gcc-4.3.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.0:<cxxflags>-U__STRICT_ANSI__
          <toolset>gcc-4.4.7:<cxxflags>-U__STRICT_ANSI__
          <define>BOOST_PP_VARIADICS=1 ]
    ;
    
#
# Templates, non-variadic macro
#
alias ttitemplate : ttitmp ttitmpcp ;

#
# Templates, variadic macro
#
alias ttivm : ttitmpv ttitmpcpv ttitmpcpvm ;

#
# All templates
#
alias ttitemplate_all : ttitemplate ttivm ;

#
# All tests
#
alias tti : ttinovm ttivm ;