From 716c2ed8efec86ebfe63cef1d76e4aa9529a6a48 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 7 Feb 2022 21:40:26 +0200 Subject: [PATCH] Disable result tests on GCC 4.7 --- test/Jamfile.v2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index ecc416e..83def84 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -144,7 +144,7 @@ run std_interop_test12.cpp ; import ../../config/checks/config : requires ; -CPP11 = [ requires cxx11_variadic_templates cxx11_template_aliases cxx11_decltype cxx11_constexpr cxx11_noexcept ] ; +CPP11 = [ requires cxx11_variadic_templates cxx11_template_aliases cxx11_decltype cxx11_constexpr cxx11_noexcept ] gcc-4.7:no ; run result_default_construct.cpp : : : $(CPP11) ; run result_value_construct.cpp : : : $(CPP11) ;