summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/outcome/test/Jamfile.v2
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/boost/libs/outcome/test/Jamfile.v2
parentInitial commit. (diff)
downloadceph-upstream.tar.xz
ceph-upstream.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/outcome/test/Jamfile.v2')
-rw-r--r--src/boost/libs/outcome/test/Jamfile.v267
1 files changed, 67 insertions, 0 deletions
diff --git a/src/boost/libs/outcome/test/Jamfile.v2 b/src/boost/libs/outcome/test/Jamfile.v2
new file mode 100644
index 000000000..4b11a3805
--- /dev/null
+++ b/src/boost/libs/outcome/test/Jamfile.v2
@@ -0,0 +1,67 @@
+# Boost.Outcome Library test Jamfile
+#
+# Copyright (C) 2017-2019 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 ../../config/checks/config : requires ;
+import ../../predef/tools/check/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>../../test/build//boost_unit_test_framework
+ ;
+
+{
+ test-suite outcome :
+
+ [ 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/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 ]
+
+ ;
+}