summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/circular_buffer/test/Jamfile.v2
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/circular_buffer/test/Jamfile.v2')
-rw-r--r--src/boost/libs/circular_buffer/test/Jamfile.v232
1 files changed, 32 insertions, 0 deletions
diff --git a/src/boost/libs/circular_buffer/test/Jamfile.v2 b/src/boost/libs/circular_buffer/test/Jamfile.v2
new file mode 100644
index 000000000..7e1ae584e
--- /dev/null
+++ b/src/boost/libs/circular_buffer/test/Jamfile.v2
@@ -0,0 +1,32 @@
+# 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 suppression Paul A. Bristow 25 Nov 2008
+
+# Bring in rules for testing.
+import testing ;
+
+project
+ : requirements
+ <toolset>msvc:<warnings>all
+ <toolset>msvc:<asynch-exceptions>on
+ <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS
+ <toolset>msvc:<cxxflags>/wd4996 # 'function': was declared deprecated
+ <toolset>msvc:<cxxflags>/wd4244 # conversion from 'int' to 'unsigned short', possible loss of data
+ # in date-time
+ ;
+
+test-suite "circular_buffer"
+ : [ run base_test.cpp : : : <threading>single : ]
+ [ run space_optimized_test.cpp : : : <threading>single : ]
+ [ run base_test.cpp : : : <threading>single <define>"BOOST_CB_ENABLE_DEBUG=1" : base_test_dbg ]
+ [ run space_optimized_test.cpp : : : <threading>single <define>"BOOST_CB_ENABLE_DEBUG=1" : space_optimized_test_dbg ]
+ [ run soft_iterator_invalidation.cpp : : : <threading>single : ]
+ [ run constant_erase_test.cpp : : : <threading>single : ]
+ [ compile bounded_buffer_comparison.cpp : <threading>multi : ]
+ ;