# Boost circular_buffer test Jamfile. # # Copyright (c) 2003-2008 Jan Gaspar # # Distributed under the Boost Software License, Version 1.0. (See # accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) # Added warning supression Paul A. Bristow 25 Nov 2008 # Bring in rules for testing. import testing ; project : requirements 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 soft_iterator_invalidation.cpp : single : ] [ run constant_erase_test.cpp : single : ] [ compile bounded_buffer_comparison.cpp : multi : ] ;