From 3ca07d82a774e7753de58726ac11661941cefd6e Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 29 Feb 2024 16:14:39 +0200 Subject: [PATCH] Update test/Jamfile; Bind requires C++11 --- test/Jamfile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/test/Jamfile b/test/Jamfile index e3ad4e6..dcc29d3 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -405,20 +405,22 @@ run lsp_hash_test.cpp : : : $(cnhash) ; run lsp_hash_test2.cpp ; +local MT = multi [ requires cxx11_decltype cxx11_noexcept ] gcc-4.6:no ; + run atomic_count_mt_test.cpp - : : : multi ; + : : : $(MT) ; run spinlock_mt_test.cpp - : : : multi ; + : : : $(MT) ; run spinlock_pool_mt_test.cpp - : : : multi ; + : : : $(MT) ; run shared_ptr_mt_test.cpp - : : : multi ; + : : : $(MT) ; run weak_ptr_mt_test.cpp - : : : multi ; + : : : $(MT) ; compile sp_report_implementation.cpp ;