From 5877b08490b764b7b72f21f57cce479d92d5632b Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 23 Jan 2018 21:49:30 +0200 Subject: [PATCH] Disable spinlock_pool_test on msvc-9.0/release as well --- test/Jamfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/Jamfile b/test/Jamfile index 20b2734..5fb9edf 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -51,7 +51,11 @@ 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 : : : msvc-8.0,release:no ; # msvc-8.0 optimizer codegen bug for x % 41 +run spinlock_pool_test.cpp : : : + # msvc-8.0, 9.0 optimizer codegen bug for `x % 41` + msvc-8.0,release:no + msvc-9.0,release:no ; + run make_shared_test.cpp ; run make_shared_move_emulation_test.cpp ; run make_shared_perfect_forwarding_test.cpp ;