From 39c4445b39dcbd08a0d521f67a10cac4efdf158c Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Sun, 1 Aug 2004 05:40:21 +0000 Subject: [PATCH] add missing tests, reorder tests by filename [SVN r24216] --- test/Jamfile | 24 +++++++++++++++--------- test/Jamfile.v2 | 24 ++++++++++++++++-------- 2 files changed, 31 insertions(+), 17 deletions(-) diff --git a/test/Jamfile b/test/Jamfile index 43b5543..a9ca0f4 100755 --- a/test/Jamfile +++ b/test/Jamfile @@ -6,8 +6,6 @@ # For more information, see http://www.boost.org/ - -# Testing Jamfile autogenerated from XML source subproject libs/utility/test ; # bring in rules for testing @@ -18,19 +16,17 @@ DEPENDS all : test ; local test_monitor = @boost/libs/test/build/boost_test_exec_monitor ; +# Please keep the tests ordered by filename test-suite utility : - [ run ../iterator_traits_test.cpp ] - [ run ../iterators_test.cpp $(test_monitor) ] - [ compile-fail ../noncopyable_test.cpp ] - [ run ../numeric_traits_test.cpp ] - [ run ../operators_test.cpp $(test_monitor) ] + [ run ../addressof_test.cpp $(test_monitor) ] + [ run ../assert_test.cpp ] + [ run ../base_from_member_test.cpp ] [ run ../binary_search_test.cpp ] [ run ../call_traits_test.cpp : -u ] [ compile-fail ../checked_delete_test.cpp ] [ run ../compressed_pair_test.cpp $(test_monitor) : -u ] - [ run ../addressof_test.cpp $(test_monitor) ] - [ run ../ref_test.cpp $(test_monitor) ] + [ run ../current_function_test.cpp : : : always_show_run_output ] [ run ../enable_if_constructors.cpp $(test_monitor) ] [ run ../enable_if_dummy_arg_disambiguation.cpp $(test_monitor) ] [ run ../enable_if_lazy.cpp $(test_monitor) ] @@ -39,6 +35,16 @@ test-suite utility [ run ../enable_if_namespace_disambiguation.cpp $(test_monitor) ] [ run ../enable_if_no_disambiguation.cpp $(test_monitor) ] [ run ../enable_if_partial_specializations.cpp $(test_monitor) ] + [ run ../half_open_range_test.cpp ] + [ run ../iterator_traits_test.cpp ] + [ run ../iterators_test.cpp $(test_monitor) ] [ run next_prior_test.cpp $(test_monitor) ] + [ compile-fail ../noncopyable_test.cpp ] + [ run ../numeric_traits_test.cpp ] + [ run ../operators_test.cpp $(test_monitor) ] + [ compile ../ref_ct_test.cpp ] + [ run ../ref_test.cpp $(test_monitor) ] [ compile result_of_test.cpp ] + [ run ../shared_iterator_test.cpp ] + [ run ../value_init_test.cpp ] ; diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 73b8a18..442828e 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -9,19 +9,17 @@ # bring in rules for testing import testing ; +# Please keep the tests ordered by filename 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 ] + [ run ../addressof_test.cpp ../../test/build//boost_test_exec_monitor ] + [ run ../assert_test.cpp ] + [ run ../base_from_member_test.cpp ] [ run ../binary_search_test.cpp ] [ 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 ] + [ run ../current_function_test.cpp : : : always_show_run_output ] [ run ../enable_if_constructors.cpp ../../test/build//boost_test_exec_monitor ] [ run ../enable_if_dummy_arg_disambiguation.cpp ../../test/build//boost_test_exec_monitor ] [ run ../enable_if_lazy.cpp ../../test/build//boost_test_exec_monitor ] @@ -30,6 +28,16 @@ test-suite utility [ run ../enable_if_namespace_disambiguation.cpp ../../test/build//boost_test_exec_monitor ] [ run ../enable_if_no_disambiguation.cpp ../../test/build//boost_test_exec_monitor ] [ run ../enable_if_partial_specializations.cpp ../../test/build//boost_test_exec_monitor ] - [ run next_prior_test.cpp ../../test/build//boost_test_exec_monitor ] + [ run ../half_open_range_test.cpp ] + [ run ../iterator_traits_test.cpp ] + [ run ../iterators_test.cpp ../../test/build//boost_test_exec_monitor ] + [ run next_prior_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 ../ref_ct_test.cpp ] + [ run ../ref_test.cpp ../../test/build//boost_test_exec_monitor ] [ compile result_of_test.cpp ] + [ run ../shared_iterator_test.cpp ] + [ run ../value_init_test.cpp ] ;