|
6 | 6 | # See accompanying file LICENSE_1_0.txt or copy at |
7 | 7 | # http://www.boost.org/LICENSE_1_0.txt |
8 | 8 |
|
| 9 | +import-search /boost/config/checks ; |
| 10 | + |
9 | 11 | import testing ; |
10 | | -import ../../config/checks/config : requires ; |
| 12 | +import config : requires ; |
11 | 13 |
|
12 | 14 | project |
13 | 15 | : requirements |
14 | 16 |
|
15 | 17 | [ requires cxx11_variadic_templates cxx11_template_aliases cxx11_decltype cxx11_hdr_tuple ] |
16 | 18 |
|
| 19 | + <library>/boost/open_method//boost_open_method |
| 20 | + |
17 | 21 | <warnings>extra |
18 | 22 |
|
19 | | - <toolset>msvc:<warnings-as-errors>on |
20 | | - <toolset>gcc:<warnings-as-errors>on |
21 | | - <toolset>clang:<warnings-as-errors>on |
| 23 | + # <toolset>msvc:<warnings-as-errors>on |
| 24 | + # <toolset>gcc:<warnings-as-errors>on |
| 25 | + # <toolset>clang:<warnings-as-errors>on |
22 | 26 | ; |
23 | 27 |
|
24 | 28 | # list |
25 | | -run test_blackbox.cpp ; |
26 | | -run test_compiler.cpp ; |
27 | | -run test_core.cpp ; |
28 | | -run test_custom_rtti.cpp ; |
29 | | -run test_member_method.cpp ; |
30 | | -run test_namespaces.cpp ; |
31 | | -run test_pointer_to_method.cpp ; |
32 | | -run test_rolex.cpp ; |
33 | | -run test_static_list.cpp ; |
34 | | -run test_virtual_ptr_all.cpp ; |
35 | | -run test_virtual_ptr_basic.cpp ; |
36 | | -run test_virtual_ptr_value_semantics.cpp ; |
37 | | -run test_shared_virtual_ptr_value_semantics.cpp ; |
38 | | -run test_unique_virtual_ptr_value_semantics.cpp ; |
| 29 | +for local src in [ glob test_*.cpp ] |
| 30 | +{ |
| 31 | + run $(src) ; |
| 32 | +} |
39 | 33 |
|
40 | 34 | # quick (for CI) |
41 | | -alias quick : blackbox ; |
| 35 | +alias quick : test_blackbox ; |
42 | 36 | explicit quick ; |
0 commit comments