diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/function/test/Jamfile.v2 | |
parent | Initial commit. (diff) | |
download | ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/function/test/Jamfile.v2')
-rw-r--r-- | src/boost/libs/function/test/Jamfile.v2 | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/src/boost/libs/function/test/Jamfile.v2 b/src/boost/libs/function/test/Jamfile.v2 new file mode 100644 index 00000000..b072b5e6 --- /dev/null +++ b/src/boost/libs/function/test/Jamfile.v2 @@ -0,0 +1,75 @@ +# Function library + +# Copyright Douglas Gregor 2001-2003. Use, modification and +# distribution is subject to the Boost Software License, Version +# 1.0. (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +# For more information, see http://www.boost.org/ + +import testing ; + +run function_test.cpp ; +# /usr/include/c++/4.4/bits/shared_ptr.h:146: error: cannot use typeid with -fno-rtti +run function_test.cpp : : : <rtti>off <toolset>gcc-4.4.7,<cxxstd>0x:<build>no : 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 ; + +lib throw_bad_function_call : throw_bad_function_call.cpp : <link>shared:<define>THROW_BAD_FUNCTION_CALL_DYN_LINK=1 ; + +run test_bad_function_call.cpp throw_bad_function_call : : : <link>shared : test_bad_function_call_shared ; +run test_bad_function_call.cpp throw_bad_function_call : : : <link>static : test_bad_function_call_static ; + +lib mixed_cxxstd : mixed_cxxstd.cpp : <link>shared:<define>MIXED_CXXSTD_DYN_LINK=1 ; + +run test_mixed_cxxstd.cpp mixed_cxxstd : : : <link>shared : mixed_cxxstd_shared ; +run test_mixed_cxxstd.cpp mixed_cxxstd : : : <link>static : mixed_cxxstd_static ; + +run test_mixed_cxxstd.cpp mixed_cxxstd/<cxxstd>98 : : : <link>shared : mixed_cxxstd_shared_98 ; +run test_mixed_cxxstd.cpp mixed_cxxstd/<cxxstd>98 : : : <link>static : mixed_cxxstd_static_98 ; + +run test_mixed_cxxstd.cpp mixed_cxxstd/<cxxstd>0x : : : <link>shared : mixed_cxxstd_shared_0x ; +run test_mixed_cxxstd.cpp mixed_cxxstd/<cxxstd>0x : : : <link>static : mixed_cxxstd_static_0x ; + +local check14 = [ check-target-builds mixed_cxxstd/<cxxstd>14 : : <build>no ] ; + +run test_mixed_cxxstd.cpp mixed_cxxstd/<cxxstd>14 : : : <link>shared $(check14) : mixed_cxxstd_shared_14 ; +run test_mixed_cxxstd.cpp mixed_cxxstd/<cxxstd>14 : : : <link>static $(check14) : mixed_cxxstd_static_14 ; + +lib return_function : return_function.cpp : <link>shared:<define>RETURN_FUNCTION_DYN_LINK=1 ; + +run test_return_function.cpp return_function : : : <link>shared : return_function_shared ; +run test_return_function.cpp return_function : : : <link>static : return_function_static ; + +run test_return_function.cpp return_function/<cxxstd>98 : : : <link>shared : return_function_shared_98 ; +run test_return_function.cpp return_function/<cxxstd>98 : : : <link>static : return_function_static_98 ; + +run test_return_function.cpp return_function/<cxxstd>0x : : : <link>shared : return_function_shared_0x ; +run test_return_function.cpp return_function/<cxxstd>0x : : : <link>static : return_function_static_0x ; + +run test_return_function.cpp return_function/<cxxstd>14 : : : <link>shared $(check14) : return_function_shared_14 ; +run test_return_function.cpp return_function/<cxxstd>14 : : : <link>static $(check14) : return_function_static_14 ; + +run quick.cpp ; |