From 4db69da7b8a7db6f7226df419be2e7b65e2d37f7 Mon Sep 17 00:00:00 2001 From: Nikita Kniazev Date: Mon, 18 Mar 2019 21:12:06 +0300 Subject: [PATCH] Add tests requirements (#260) Will wash away failures on unsupported compilers from the regression board --- Jamfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Jamfile b/Jamfile index f3f499a87..9331e8845 100644 --- a/Jamfile +++ b/Jamfile @@ -7,6 +7,7 @@ # Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) +import ../config/checks/config : requires ; import os ; # Travsi CI, AppVeyor @@ -35,6 +36,13 @@ project clang,debug:"-std=c++11 -pedantic -fstrict-aliasing -Wextra" clang,release:"-std=c++11 -pedantic -fstrict-aliasing -Wextra" $(EXTRA_WARNINGS) + [ requires + cxx11_constexpr + cxx11_defaulted_functions + cxx11_template_aliases + cxx11_trailing_result_types # implies decltype and auto + cxx11_variadic_templates + ] ; variant gil_ubsan_integer