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
|
# Boost.Outcome Library test Jamfile
#
# Copyright (C) 2017-2024 Niall Douglas
#
# Use, modification, and distribution is 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)
#
# See http://www.boost.org/libs/outcome for documentation.
import testing ;
import-search /boost/config/checks ;
import config : requires ;
import-search /boost/predef/tools/check ;
import predef : check require : predef-check predef-require ;
project
: requirements
[ requires cxx14_variable_templates cxx14_constexpr ]
[ predef-require "!BOOST_COMP_GNUC" or "BOOST_COMP_GNUC >= 6.0" ]
[ predef-require "!BOOST_COMP_CLANG" or "BOOST_COMP_CLANG >= 4.0" ]
<define>BOOST_TEST_MODULE=Outcome
<library>/boost/test//boost_unit_test_framework
<library>/boost/outcome//boost_outcome
;
{
test-suite outcome :
[ compile-fail compile-fail/issue0071-fail.cpp ]
[ compile-fail compile-fail/outcome-int-int-1.cpp ]
[ compile-fail compile-fail/result-int-int-1.cpp ]
[ compile-fail compile-fail/result-int-int-2.cpp ]
[ run tests/comparison.cpp ]
[ run tests/constexpr.cpp ]
[ run tests/containers.cpp ]
[ run tests/core-outcome.cpp ]
[ run tests/core-result.cpp ]
[ run tests/default-construction.cpp ]
[ run tests/experimental-core-outcome-status.cpp ]
[ run tests/experimental-core-result-status.cpp ]
[ run tests/experimental-p0709a.cpp ]
[ run tests/fileopen.cpp ]
[ run tests/hooks.cpp ]
[ run tests/issue0007.cpp ]
[ run tests/issue0009.cpp ]
[ run tests/issue0010.cpp ]
[ run tests/issue0012.cpp ]
[ run tests/issue0016.cpp ]
[ run tests/issue0059.cpp ]
[ run tests/issue0061.cpp ]
[ run tests/issue0064.cpp ]
[ run tests/issue0065.cpp ]
[ run tests/issue0071.cpp ]
[ run tests/issue0095.cpp ]
[ run tests/issue0115.cpp ]
[ run tests/issue0116.cpp ]
[ run tests/issue0140.cpp ]
# [ run tests/issue0182.cpp ] ## not applicable to Boost
[ run tests/issue0203.cpp ]
[ run tests/issue0210.cpp ]
[ run tests/issue0220.cpp ]
[ run tests/issue0244.cpp ]
[ run tests/issue0247.cpp ]
[ run tests/issue0255.cpp ]
[ run tests/issue0259.cpp ]
[ run tests/noexcept-propagation.cpp ]
[ run tests/propagate.cpp ]
[ run tests/serialisation.cpp ]
[ run tests/success-failure.cpp ]
[ run tests/swap.cpp ]
[ run tests/udts.cpp ]
[ run tests/value-or-error.cpp ]
[ run expected-pass.cpp ]
;
}
|