From 27808e2bd555f23e9407015caf33b34929840418 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 24 Sep 2018 19:31:58 +0300 Subject: [PATCH] Simplify test/Jamfile --- test/Jamfile.v2 | 90 ++++++++++++++----------------------------------- 1 file changed, 26 insertions(+), 64 deletions(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index d77a624..4968c59 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -7,69 +7,31 @@ # For more information, see http://www.boost.org/ -project - : requirements msvc:on - : source-location $(BOOST_ROOT) - ; - -# bring in rules for testing import testing ; -{ - - test-suite function - : - [ run libs/function/test/function_test.cpp : : : : lib_function_test ] - - [ run libs/function/test/function_test.cpp : : : off : lib_function_test_no_rtti ] - - [ run libs/function/test/function_n_test.cpp : : : : ] - - [ run libs/function/test/allocator_test.cpp ] - - [ run libs/function/test/stateless_test.cpp ] - - [ run libs/function/test/lambda_test.cpp ] - - [ compile-fail libs/function/test/function_test_fail1.cpp : : : : ] - - [ compile-fail libs/function/test/function_test_fail2.cpp : : : : ] - - [ compile libs/function/test/function_30.cpp : : : : ] - - [ compile libs/function/test/function_30_repeat.cpp : : : : ] - - [ run libs/function/test/function_arith_cxx98.cpp : : : : ] - - [ run libs/function/test/function_arith_portable.cpp : : : : ] - - [ run libs/function/test/sum_avg_cxx98.cpp : : : : ] - - [ run libs/function/test/sum_avg_portable.cpp : : : : ] - - [ run libs/function/test/mem_fun_cxx98.cpp : : : : ] - - [ run libs/function/test/mem_fun_portable.cpp : : : : ] - - [ run libs/function/test/std_bind_cxx98.cpp : : : : ] - - [ run libs/function/test/std_bind_portable.cpp : : : : ] - - [ run libs/function/test/function_ref_cxx98.cpp : : : : ] - - [ run libs/function/test/function_ref_portable.cpp : : : : ] - - [ run libs/function/test/contains_test.cpp : : : : ] - - [ run libs/function/test/contains2_test.cpp : : : : ] - - [ run libs/function/test/nothrow_swap.cpp : : : : ] - - [ run libs/function/test/rvalues_test.cpp : : : : ] - - [ compile libs/function/test/function_typeof_test.cpp ] - - [ run libs/function/test/result_arg_types_test.cpp ] - ; -} - +run function_test.cpp ; +run function_test.cpp : : : off : function_test_no_rtti ; +run function_n_test.cpp ; +run allocator_test.cpp ; +run stateless_test.cpp ; +run lambda_test.cpp ; +compile-fail function_test_fail1.cpp ; +compile-fail function_test_fail2.cpp ; +compile function_30.cpp ; +compile function_30_repeat.cpp ; +run function_arith_cxx98.cpp ; +run function_arith_portable.cpp ; +run sum_avg_cxx98.cpp ; +run sum_avg_portable.cpp ; +run mem_fun_cxx98.cpp ; +run mem_fun_portable.cpp ; +run std_bind_cxx98.cpp ; +run std_bind_portable.cpp ; +run function_ref_cxx98.cpp ; +run function_ref_portable.cpp ; +run contains_test.cpp ; +run contains2_test.cpp ; +run nothrow_swap.cpp ; +run rvalues_test.cpp ; +compile function_typeof_test.cpp ; +run result_arg_types_test.cpp ;