From ec945810eb957fcb35c657ddbca3f660109f200c Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Mon, 5 Jun 2023 15:56:06 -0700 Subject: [PATCH] Remove problematic test from clang-3.7 runner --- test/cfoa/fwd_tests.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/cfoa/fwd_tests.cpp b/test/cfoa/fwd_tests.cpp index 8e88f849..12534533 100644 --- a/test/cfoa/fwd_tests.cpp +++ b/test/cfoa/fwd_tests.cpp @@ -3,7 +3,7 @@ // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "helpers.hpp" - +#include #include test::seed_t initialize_seed{32304628}; @@ -37,11 +37,15 @@ bool unequal_call(boost::unordered::concurrent_flat_map& x1, using map_type = boost::unordered::concurrent_flat_map; +#if BOOST_WORKAROUND(BOOST_CLANG_VERSION, != 30700) + UNORDERED_AUTO_TEST (fwd_swap_call) { map_type x1, x2; swap_call(x1, x2); } +#endif + UNORDERED_AUTO_TEST (fwd_equal_call) { map_type x1, x2; BOOST_TEST(equal_call(x1, x2));