From 4abc74fe287f0d1c8b16b8ae4676298a38535605 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 23 Jan 2018 19:05:44 +0200 Subject: [PATCH] Disable spinlock_pool_test on msvc-8.0/release --- test/Jamfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Jamfile b/test/Jamfile index 325d4cb..20b2734 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -1,6 +1,6 @@ # Boost.SmartPtr Library test Jamfile # -# Copyright (c) 2003-2017 Peter Dimov +# Copyright (c) 2003-2018 Peter Dimov # Copyright (c) 2003 Dave Abrahams # # Distributed under the Boost Software License, Version 1.0. (See @@ -51,7 +51,7 @@ run yield_k_test.cpp : : : multi : yield_k_test.mt ; run spinlock_test.cpp ; run spinlock_try_test.cpp ; run spinlock_try_test.cpp : : : multi : spinlock_try_test.mt ; -run spinlock_pool_test.cpp ; +run spinlock_pool_test.cpp : : : msvc-8.0,release:no ; # msvc-8.0 optimizer codegen bug for x % 41 run make_shared_test.cpp ; run make_shared_move_emulation_test.cpp ; run make_shared_perfect_forwarding_test.cpp ;