1 | # Copyright David Abrahams 2003. Permission to copy, use, |
---|
2 | # modify, sell and distribute this software is granted provided this |
---|
3 | # copyright notice appears in all copies. This software is provided |
---|
4 | # "as is" without express or implied warranty, and with no claim as |
---|
5 | # to its suitability for any purpose. |
---|
6 | |
---|
7 | # For more information, see http://www.boost.org/ |
---|
8 | |
---|
9 | subproject libs/utility/test ; |
---|
10 | |
---|
11 | # bring in rules for testing |
---|
12 | import testing ; |
---|
13 | |
---|
14 | # Make tests run by default. |
---|
15 | DEPENDS all : test ; |
---|
16 | |
---|
17 | local test_monitor = <lib>@boost/libs/test/build/boost_test_exec_monitor ; |
---|
18 | |
---|
19 | # Please keep the tests ordered by filename |
---|
20 | test-suite utility |
---|
21 | : |
---|
22 | [ run ../addressof_test.cpp ] |
---|
23 | [ run ../assert_test.cpp ] |
---|
24 | [ run ../base_from_member_test.cpp ] |
---|
25 | [ run ../binary_search_test.cpp ] |
---|
26 | [ run ../call_traits_test.cpp : -u ] |
---|
27 | [ compile-fail ../checked_delete_test.cpp ] |
---|
28 | [ run ../compressed_pair_test.cpp $(test_monitor) : -u ] |
---|
29 | [ run ../current_function_test.cpp : : : <test-info>always_show_run_output ] |
---|
30 | [ run ../iterators_test.cpp $(test_monitor) ] |
---|
31 | [ run next_prior_test.cpp $(test_monitor) ] |
---|
32 | [ compile-fail ../noncopyable_test.cpp ] |
---|
33 | [ run ../numeric_traits_test.cpp ] |
---|
34 | [ run ../operators_test.cpp $(test_monitor) ] |
---|
35 | [ compile ../ref_ct_test.cpp ] |
---|
36 | [ run ../ref_test.cpp $(test_monitor) ] |
---|
37 | [ compile result_of_test.cpp ] |
---|
38 | [ run ../shared_iterator_test.cpp ] |
---|
39 | [ run ../value_init_test.cpp ] |
---|
40 | [ compile-fail ../value_init_test_fail1.cpp ] |
---|
41 | [ compile-fail ../value_init_test_fail2.cpp ] |
---|
42 | [ compile-fail ../value_init_test_fail3.cpp ] |
---|
43 | ; |
---|