add missing tests, reorder tests by filename

[SVN r24216]
This commit is contained in:
Aleksey Gurtovoy 2004-08-01 05:40:21 +00:00
parent 7819b022ad
commit 39c4445b39
2 changed files with 31 additions and 17 deletions

View File

@ -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 = <lib>@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 : : : <test-info>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 ]
;

View File

@ -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 : : : <test-info>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 ]
;