diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/contract/example/Jamfile.v2 | |
parent | Initial commit. (diff) | |
download | ceph-upstream.tar.xz ceph-upstream.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/contract/example/Jamfile.v2')
-rw-r--r-- | src/boost/libs/contract/example/Jamfile.v2 | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/src/boost/libs/contract/example/Jamfile.v2 b/src/boost/libs/contract/example/Jamfile.v2 new file mode 100644 index 00000000..3fe6e2fa --- /dev/null +++ b/src/boost/libs/contract/example/Jamfile.v2 @@ -0,0 +1,91 @@ + +# Copyright (C) 2008-2018 Lorenzo Caminiti +# Distributed under the Boost Software License, Version 1.0 (see accompanying +# file LICENSE_1_0.txt or a copy at http://www.boost.org/LICENSE_1_0.txt). +# See: http://www.boost.org/doc/libs/release/libs/contract/doc/html/index.html + +import ../build/boost_contract_build ; +import ../../config/checks/config : requires ; + +test-suite features : + [ boost_contract_build.subdir-run features : introduction_comments ] + [ boost_contract_build.subdir-run-cxx11 features : introduction ] + [ boost_contract_build.subdir-run-cxx11 features : introduction_public ] + + [ boost_contract_build.subdir-run-cxx11 features : non_member ] + [ boost_contract_build.subdir-run-cxx11 features : lambda ] + [ boost_contract_build.subdir-run-cxx11 features : loop ] + [ boost_contract_build.subdir-run-cxx11 features : code_block ] + [ boost_contract_build.subdir-run-cxx11 features : public ] + [ boost_contract_build.subdir-run-cxx11 features : base_types ] + [ boost_contract_build.subdir-run-cxx11 features : static_public ] + [ boost_contract_build.subdir-run-cxx11 features : private_protected ] + [ boost_contract_build.subdir-run-cxx11 features : + private_protected_virtual ] + [ boost_contract_build.subdir-run-cxx11 features : + private_protected_virtual_multi ] + [ boost_contract_build.subdir-run-cxx11 features : check ] + + [ boost_contract_build.subdir-run-cxx11 features : friend ] + [ boost_contract_build.subdir-run-cxx11 features : friend_invariant ] + [ boost_contract_build.subdir-run-cxx11 features : old ] + [ boost_contract_build.subdir-run-cxx11 features : optional_result ] + [ boost_contract_build.subdir-run-cxx11 features : optional_result_virtual ] + [ boost_contract_build.subdir-run-cxx11 features : pure_virtual_public ] + [ boost_contract_build.subdir-run-cxx11 features : overload ] + [ boost_contract_build.subdir-run-cxx11 features : named_override ] + [ boost_contract_build.subdir-run-cxx11 features : move ] + [ boost_contract_build.subdir-run-cxx11 features : union ] + [ boost_contract_build.subdir-run features : volatile ] + + [ boost_contract_build.subdir-run-cxx11 features : old_if_copyable ] + [ boost_contract_build.subdir-run-cxx11 features : if_constexpr : + [ requires cxx17_if_constexpr ] ] + [ boost_contract_build.subdir-run-cxx11 features : condition_if ] + [ boost_contract_build.subdir-run-cxx11 features : call_if_cxx14 : + [ requires cxx14_generic_lambdas ] ] + [ boost_contract_build.subdir-run-cxx11 features : access ] + [ boost_contract_build.subdir-run-cxx11 features : separate_body ] + [ boost_contract_build.subdir-run-cxx11 features : throw_on_failure ] + [ boost_contract_build.subdir-run-cxx11 features : ifdef ] + [ boost_contract_build.subdir-run-cxx11 features : assertion_level ] + [ boost_contract_build.subdir-run-cxx11 features : ifdef_macro ] + [ boost_contract_build.subdir-run-cxx11 features : base_types_no_macro ] + [ boost_contract_build.subdir-run-cxx11 features : old_no_macro ] + # Still needs C++11 for OLDOF variadic macros. + [ boost_contract_build.subdir-run-cxx11 features : no_lambdas ] + [ boost_contract_build.subdir-run-cxx11 features : no_lambdas_local_func ] +; + +test-suite n1962 : + [ boost_contract_build.subdir-run-cxx11 n1962 : vector ] + [ boost_contract_build.subdir-run-cxx11 n1962 : sqrt ] + [ boost_contract_build.subdir-run-cxx11 n1962 : circle ] + [ boost_contract_build.subdir-run-cxx11 n1962 : equal ] + [ boost_contract_build.subdir-run-cxx11 n1962 : factorial ] + [ boost_contract_build.subdir-run-cxx11 n1962 : sum ] +; + +test-suite meyer97 : + [ boost_contract_build.subdir-run-cxx11 meyer97 : stack4_main ] + [ boost_contract_build.subdir-run-cxx11 meyer97 : stack3 ] +; + +test-suite mitchell02 : + [ boost_contract_build.subdir-run-cxx11 mitchell02 : stack ] + [ boost_contract_build.subdir-run-cxx11 mitchell02 : simple_queue ] + [ boost_contract_build.subdir-run-cxx11 mitchell02 : dictionary ] + [ boost_contract_build.subdir-run-cxx11 mitchell02 : customer_manager ] + [ boost_contract_build.subdir-run-cxx11 mitchell02 : name_list ] + [ boost_contract_build.subdir-run-cxx11 mitchell02 : courier ] + [ boost_contract_build.subdir-run-cxx11 mitchell02 : observer_main ] + [ boost_contract_build.subdir-run-cxx11 mitchell02 : counter_main ] +; + +test-suite cline90 : + [ boost_contract_build.subdir-run-cxx11 cline90 : stack ] + [ boost_contract_build.subdir-run-cxx11 cline90 : vector_main ] + [ boost_contract_build.subdir-run-cxx11 cline90 : vstack ] + [ boost_contract_build.subdir-run-cxx11 cline90 : calendar ] +; + |