From 9a11abcb9f1346c0e19032a508000412fdb1d6d4 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 4 Nov 2024 03:43:06 +0200 Subject: [PATCH] Disable array_hash.cpp under C++03 --- test/Jamfile.v2 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index bab406a..dde5c33 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -2,7 +2,10 @@ #~ 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) +require-b2 5.0.1 ; import testing ; +import-search /boost/config/checks ; +import config : requires ; run array0.cpp ; run array1.cpp ; @@ -12,9 +15,13 @@ run array4.cpp ; run array5.cpp ; run array6.cpp ; run array7.cpp ; + # run array_constexpr.cpp ; + compile-fail array_getfail1.cpp ; compile-fail array_getfail2.cpp ; -run array_hash.cpp ; + +run array_hash.cpp + : : : [ requires cxx11_noexcept ] ; run quick.cpp ;