From 0cbdd5b7fe4344c1d33604186a22baba721f8011 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 3 Feb 2026 14:21:23 +0200 Subject: [PATCH] Update test/Jamfile --- test/Jamfile.v2 | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 0aa6f3a..a1742c5 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -15,19 +15,16 @@ project : requirements /boost/circular_buffer//boost_circular_buffer msvc:all - msvc:on msvc:_SCL_SECURE_NO_WARNINGS msvc:/wd4996 # 'function': was declared deprecated msvc:/wd4244 # conversion from 'int' to 'unsigned short', possible loss of data # in date-time ; -test-suite "circular_buffer" - : [ run base_test.cpp : : : single : ] - [ run space_optimized_test.cpp : : : single : ] - [ run base_test.cpp : : : single "BOOST_CB_ENABLE_DEBUG=1" : base_test_dbg ] - [ run space_optimized_test.cpp : : : single "BOOST_CB_ENABLE_DEBUG=1" : space_optimized_test_dbg ] - [ run soft_iterator_invalidation.cpp : : : single : ] - [ run constant_erase_test.cpp : : : single : ] - [ compile bounded_buffer_comparison.cpp : multi /boost/thread//boost_thread /boost/timer//boost_timer : ] - ; +run base_test.cpp ; +run space_optimized_test.cpp ; +run base_test.cpp : : : "BOOST_CB_ENABLE_DEBUG=1" : base_test_dbg ; +run space_optimized_test.cpp : : : "BOOST_CB_ENABLE_DEBUG=1" : space_optimized_test_dbg ; +run soft_iterator_invalidation.cpp ; +run constant_erase_test.cpp ; +compile bounded_buffer_comparison.cpp : multi /boost/thread//boost_thread /boost/timer//boost_timer ;