From ca3e7d85303ae0f95a70525137deb9cf503a89a8 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Tue, 7 Oct 2003 07:25:24 +0000 Subject: [PATCH] Add V2 Jamfile [SVN r20270] --- test/Jamfile.v2 | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 test/Jamfile.v2 diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 new file mode 100644 index 0000000..41b9fb6 --- /dev/null +++ b/test/Jamfile.v2 @@ -0,0 +1,26 @@ +# Copyright David Abrahams 2003. Permission to copy, use, +# modify, sell and distribute this software is granted provided this +# copyright notice appears in all copies. This software is provided +# "as is" without express or implied warranty, and with no claim as +# to its suitability for any purpose. + +# For more information, see http://www.boost.org/ + +# bring in rules for testing +import testing ; + +test-suite utility + : + [ run ../iterator_traits_test.cpp ] + [ run ../iterators_test.cpp ../../test/build//boost_test_exec_monitor ] + [ compile-fail ../noncopyable_test.cpp ] + [ run ../numeric_traits_test.cpp ] + [ run ../operators_test.cpp ../../test/build//boost_test_exec_monitor ] + [ compile-fail ../safe_bool_testable_test.cpp ] + [ run ../binary_search_test.cpp ../../test/build//boost_test_exec_monitor ] + [ run ../call_traits_test.cpp : -u ] + [ compile-fail ../checked_delete_test.cpp ] + [ run ../compressed_pair_test.cpp ../../test/build//boost_test_exec_monitor : -u ] + [ run ../addressof_test.cpp ../../test/build//boost_test_exec_monitor ] + [ run ../ref_test.cpp ../../test/build//boost_test_exec_monitor ] + ;