]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/coroutine2/test/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / coroutine2 / test / Jamfile.v2
1
2 # Copyright Oliver Kowalke 2014.
3 # Distributed under the Boost Software License, Version 1.0.
4 # (See accompanying file LICENSE_1_0.txt or copy at
5 # http://www.boost.org/LICENSE_1_0.txt)
6
7 import common ;
8 import feature ;
9 import indirect ;
10 import modules ;
11 import os ;
12 import path ;
13 import testing ;
14 import toolset ;
15 import ../../config/checks/config : requires ;
16
17 project boost/coroutine2/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_coroutine.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_variadic_templates ] ] ;
43
44 test-suite full :
45 minimal ;
46
47 test-suite extra ;
48
49 explicit minimal ;
50 explicit extra ;