]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/context/test/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / context / test / Jamfile.v2
1 # Boost.Context Library Tests Jamfile
2
3 # Copyright Oliver Kowalke 2009.
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 import common ;
9 import feature ;
10 import indirect ;
11 import modules ;
12 import os ;
13 import testing ;
14 import toolset ;
15 import ../../config/checks/config : requires ;
16
17 project boost/context/test
18 : requirements
19 <library>../../test/build//boost_unit_test_framework
20 <library>/boost/context//boost_context
21 <toolset>gcc,<segmented-stacks>on:<cxxflags>-fsplit-stack
22 <toolset>gcc,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
23 <toolset>clang,<segmented-stacks>on:<cxxflags>-fsplit-stack
24 <toolset>clang,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
25 <link>static
26 <threading>multi
27 ;
28
29 test-suite minimal :
30 [ run test_invoke.cpp :
31 : :
32 [ requires cxx11_auto_declarations
33 cxx11_constexpr
34 cxx11_defaulted_functions
35 cxx11_final
36 cxx11_hdr_tuple
37 cxx11_lambdas
38 cxx11_noexcept
39 cxx11_nullptr
40 cxx11_rvalue_references
41 cxx11_template_aliases
42 cxx11_thread_local
43 cxx11_variadic_templates ] ]
44
45 [ run test_apply.cpp :
46 : :
47 [ requires cxx11_auto_declarations
48 cxx11_constexpr
49 cxx11_defaulted_functions
50 cxx11_final
51 cxx11_hdr_tuple
52 cxx11_lambdas
53 cxx11_noexcept
54 cxx11_nullptr
55 cxx11_rvalue_references
56 cxx11_template_aliases
57 cxx11_thread_local
58 cxx11_variadic_templates ] ]
59
60 [ run test_execution_context.cpp :
61 : :
62 [ requires cxx11_auto_declarations
63 cxx11_constexpr
64 cxx11_defaulted_functions
65 cxx11_final
66 cxx11_hdr_tuple
67 cxx11_lambdas
68 cxx11_noexcept
69 cxx11_nullptr
70 cxx11_rvalue_references
71 cxx11_template_aliases
72 cxx11_thread_local
73 cxx11_variadic_templates ] ] ;
74
75 test-suite full :
76 minimal ;
77
78 test-suite extra ;
79
80 explicit minimal ;
81 explicit extra ;