From 456556e4abd185ec0762abeccd856eeba7da5de8 Mon Sep 17 00:00:00 2001 From: Jean-Louis Leroy Date: Sat, 7 Sep 2024 11:17:00 -0400 Subject: [PATCH] test/Jamfile --- test/Jamfile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 test/Jamfile diff --git a/test/Jamfile b/test/Jamfile new file mode 100644 index 00000000..cf366b76 --- /dev/null +++ b/test/Jamfile @@ -0,0 +1,29 @@ +# Boost.OpenMethod Library Test Jamfile +# +# Copyright 2015-2019 Peter Dimov +# +# Distributed under 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 + +import testing ; +import ../../config/checks/config : requires ; + +project + : requirements + + [ requires cxx11_variadic_templates cxx11_template_aliases cxx11_decltype cxx11_hdr_tuple ] + + extra + + msvc:on + gcc:on + clang:on + ; + +# list +run blackbox.cpp ; + +# quick (for CI) +alias quick : blackbox ; +explicit quick ;