Update build.jam, test/Jamfile

This commit is contained in:
Peter Dimov
2024-08-22 14:21:16 +03:00
parent 27bbedd3a1
commit bc78cd0f3d
2 changed files with 12 additions and 14 deletions

View File

@@ -16,8 +16,8 @@ project
<toolset>msvc:<warnings-as-errors>on
<toolset>gcc:<warnings-as-errors>on
<toolset>clang:<warnings-as-errors>on
<library>/boost/typeof//boost_typeof
<library>/boost/function//boost_function
<library>/boost/typeof//boost_typeof
;
run function_test.cpp ;
@@ -26,7 +26,8 @@ run function_test.cpp : : : <rtti>off <toolset>gcc-4.4,<cxxstd>0x:<build>no : fu
run function_n_test.cpp ;
run allocator_test.cpp ;
run stateless_test.cpp ;
run lambda_test.cpp : : : <library>/boost/lambda//boost_lambda ;
run lambda_test.cpp
: : : <library>/boost/lambda//boost_lambda ;
compile-fail function_test_fail1.cpp ;
compile-fail function_test_fail2.cpp ;
compile function_30.cpp ;
@@ -44,9 +45,10 @@ run function_ref_portable.cpp ;
run contains_test.cpp ;
run contains2_test.cpp ;
run nothrow_swap.cpp ;
run rvalues_test.cpp : : : <library>/boost/move//boost_move ;
run rvalues_test.cpp
: : : <library>/boost/move//boost_move ;
compile function_typeof_test.cpp
: <cxxstd>03:<build>no <cxxstd>98:<build>no <cxxstd>0x:<build>no ;
: <cxxstd>03:<build>no <cxxstd>98:<build>no <cxxstd>0x:<build>no ;
run result_arg_types_test.cpp ;
run result_arg_n_types_test.cpp ;