2017-06-21 04:07:17 +03:00
|
|
|
# Boost.SmartPtr Library test Jamfile
|
|
|
|
|
#
|
2018-01-23 19:05:44 +02:00
|
|
|
# Copyright (c) 2003-2018 Peter Dimov
|
2017-06-21 04:07:17 +03:00
|
|
|
# Copyright (c) 2003 Dave Abrahams
|
|
|
|
|
#
|
|
|
|
|
# Distributed under 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)
|
|
|
|
|
|
2024-03-11 08:38:16 -05:00
|
|
|
require-b2 5.0.1 ;
|
|
|
|
|
import-search /boost/config/checks ;
|
|
|
|
|
import config : requires ;
|
2017-06-21 04:07:17 +03:00
|
|
|
import testing ;
|
|
|
|
|
|
2018-12-23 06:21:55 +02:00
|
|
|
project
|
|
|
|
|
: requirements
|
2024-10-07 14:19:59 +03:00
|
|
|
|
2024-07-20 21:25:39 -05:00
|
|
|
<library>/boost/smart_ptr//boost_smart_ptr
|
2024-10-07 14:19:59 +03:00
|
|
|
<library>/boost/core//boost_core
|
2024-08-27 19:13:36 +03:00
|
|
|
<library>/boost/align//boost_align
|
2024-10-07 14:19:59 +03:00
|
|
|
<library>/boost/atomic//boost_atomic
|
|
|
|
|
<library>/boost/container_hash//boost_container_hash
|
|
|
|
|
<library>/boost/bind//boost_bind
|
|
|
|
|
<library>/boost/move//boost_move
|
|
|
|
|
|
2018-12-23 06:21:55 +02:00
|
|
|
<toolset>gcc:<cxxflags>-Wno-non-virtual-dtor
|
|
|
|
|
<toolset>gcc:<cxxflags>-Wno-deprecated-declarations
|
2024-09-25 19:28:18 +03:00
|
|
|
<toolset>gcc:<cxxflags>-Wno-delete-non-virtual-dtor
|
2018-12-23 06:21:55 +02:00
|
|
|
;
|
|
|
|
|
|
2017-09-04 15:45:07 +03:00
|
|
|
# quick test (for CI)
|
|
|
|
|
run quick.cpp ;
|
|
|
|
|
|
|
|
|
|
# full test suite
|
2017-06-21 04:07:17 +03:00
|
|
|
run smart_ptr_test.cpp ;
|
2018-12-23 06:21:55 +02:00
|
|
|
run shared_ptr_basic_test.cpp ;
|
|
|
|
|
run shared_ptr_test.cpp ;
|
2017-06-21 04:07:17 +03:00
|
|
|
run weak_ptr_test.cpp ;
|
|
|
|
|
run weak_ptr_move_test.cpp ;
|
2018-12-23 06:21:55 +02:00
|
|
|
run shared_from_this_test.cpp ;
|
2017-06-21 04:07:17 +03:00
|
|
|
run get_deleter_test.cpp ;
|
|
|
|
|
run intrusive_ptr_test.cpp ;
|
|
|
|
|
run intrusive_ptr_move_test.cpp ;
|
|
|
|
|
run intrusive_ref_counter_test.cpp ;
|
|
|
|
|
run atomic_count_test.cpp ;
|
|
|
|
|
run lw_mutex_test.cpp ;
|
2017-09-01 13:25:19 +03:00
|
|
|
run lw_mutex_test.cpp : : : <define>BOOST_USE_WINDOWS_H : lw_mutex_test.win_h ;
|
2017-06-21 04:07:17 +03:00
|
|
|
compile-fail shared_ptr_assign_fail.cpp ;
|
|
|
|
|
compile-fail shared_ptr_delete_fail.cpp ;
|
|
|
|
|
compile-fail shared_ptr_compare_fail.cpp ;
|
|
|
|
|
run shared_ptr_alloc2_test.cpp ;
|
|
|
|
|
run pointer_cast_test.cpp ;
|
|
|
|
|
run cpp11_pointer_cast_test.cpp ;
|
|
|
|
|
compile pointer_to_other_test.cpp ;
|
|
|
|
|
run auto_ptr_rv_test.cpp ;
|
|
|
|
|
run shared_ptr_alias_test.cpp ;
|
|
|
|
|
run shared_ptr_rv_test.cpp ;
|
|
|
|
|
run shared_ptr_rv_pointer_cast_test.cpp ;
|
|
|
|
|
run shared_ptr_move_test.cpp ;
|
|
|
|
|
run shared_ptr_alias_move_test.cpp ;
|
|
|
|
|
run shared_ptr_reinterpret_pointer_cast_test.cpp ;
|
|
|
|
|
compile-fail shared_ptr_pv_fail.cpp ;
|
|
|
|
|
run sp_unary_addr_test.cpp ;
|
|
|
|
|
compile-fail scoped_ptr_eq_fail.cpp ;
|
|
|
|
|
compile-fail scoped_array_eq_fail.cpp ;
|
|
|
|
|
run esft_regtest.cpp ;
|
|
|
|
|
run yield_k_test.cpp ;
|
|
|
|
|
run yield_k_test.cpp : : : <threading>multi : yield_k_test.mt ;
|
|
|
|
|
run spinlock_test.cpp ;
|
|
|
|
|
run spinlock_try_test.cpp ;
|
|
|
|
|
run spinlock_try_test.cpp : : : <threading>multi : spinlock_try_test.mt ;
|
2024-09-25 19:28:18 +03:00
|
|
|
run spinlock_pool_test.cpp ;
|
2018-01-23 21:49:30 +02:00
|
|
|
|
2017-06-21 04:07:17 +03:00
|
|
|
run make_shared_test.cpp ;
|
2022-10-19 21:40:58 +03:00
|
|
|
run make_shared_move_emulation_test.cpp
|
|
|
|
|
: : :
|
|
|
|
|
<toolset>clang-3.5,<cxxstd>03:<build>no
|
|
|
|
|
<toolset>clang-3.6,<cxxstd>03:<build>no
|
|
|
|
|
<toolset>clang-3.7,<cxxstd>03:<build>no
|
|
|
|
|
;
|
|
|
|
|
|
2017-06-21 04:07:17 +03:00
|
|
|
run make_shared_perfect_forwarding_test.cpp ;
|
|
|
|
|
run shared_ptr_convertible_test.cpp ;
|
|
|
|
|
run wp_convertible_test.cpp ;
|
|
|
|
|
run ip_convertible_test.cpp ;
|
|
|
|
|
run allocate_shared_test.cpp ;
|
2024-10-07 14:19:59 +03:00
|
|
|
run sp_atomic_test.cpp ;
|
2017-06-21 04:07:17 +03:00
|
|
|
run esft_void_test.cpp ;
|
|
|
|
|
run esft_second_ptr_test.cpp ;
|
|
|
|
|
run make_shared_esft_test.cpp ;
|
|
|
|
|
run allocate_shared_esft_test.cpp ;
|
|
|
|
|
run sp_recursive_assign_test.cpp ;
|
|
|
|
|
run sp_recursive_assign2_test.cpp ;
|
|
|
|
|
run sp_recursive_assign_rv_test.cpp ;
|
|
|
|
|
run sp_recursive_assign2_rv_test.cpp ;
|
2020-01-08 05:08:37 +02:00
|
|
|
|
2024-09-25 19:28:18 +03:00
|
|
|
compile-fail auto_ptr_lv_fail.cpp ;
|
2020-01-08 05:08:37 +02:00
|
|
|
|
2017-06-21 04:07:17 +03:00
|
|
|
run atomic_count_test2.cpp ;
|
|
|
|
|
run sp_typeinfo_test.cpp ;
|
|
|
|
|
compile make_shared_fp_test.cpp ;
|
2024-10-07 14:19:59 +03:00
|
|
|
run sp_hash_test.cpp ;
|
2017-06-21 04:07:17 +03:00
|
|
|
run get_deleter_array_test.cpp ;
|
2024-10-07 14:19:59 +03:00
|
|
|
run ip_hash_test.cpp ;
|
2017-06-21 04:07:17 +03:00
|
|
|
run owner_less_test.cpp ;
|
|
|
|
|
run sp_unique_ptr_test.cpp ;
|
|
|
|
|
run sp_array_test.cpp ;
|
|
|
|
|
compile sp_array_cv_test.cpp ;
|
|
|
|
|
run sp_convertible_test.cpp ;
|
|
|
|
|
run sp_array_n_test.cpp ;
|
|
|
|
|
run sp_array_cast_test.cpp ;
|
|
|
|
|
run sp_zero_compare_test.cpp ;
|
|
|
|
|
run sp_nullptr_test.cpp ;
|
|
|
|
|
run sa_nullptr_test.cpp ;
|
|
|
|
|
run shared_ptr_alloc3_test.cpp ;
|
|
|
|
|
run shared_ptr_alloc11_test.cpp ;
|
|
|
|
|
run shared_ptr_alloc_construct11_test.cpp ;
|
|
|
|
|
run allocate_shared_alloc11_test.cpp ;
|
|
|
|
|
run allocate_shared_construct11_test.cpp ;
|
|
|
|
|
run sp_interlocked_test.cpp ;
|
|
|
|
|
|
|
|
|
|
compile-fail array_fail_spa_sp_c.cpp ;
|
|
|
|
|
compile-fail array_fail_sp_spa_c.cpp ;
|
|
|
|
|
compile-fail array_fail_spa_spa_c.cpp ;
|
|
|
|
|
compile-fail array_fail_spa_wp_c.cpp ;
|
|
|
|
|
compile-fail array_fail_sp_wpa_c.cpp ;
|
|
|
|
|
compile-fail array_fail_spa_wpa_c.cpp ;
|
|
|
|
|
compile-fail array_fail_wpa_wp_c.cpp ;
|
|
|
|
|
compile-fail array_fail_wp_wpa_c.cpp ;
|
|
|
|
|
compile-fail array_fail_wpa_wpa_c.cpp ;
|
|
|
|
|
compile-fail array_fail_ap_spa_c.cpp ;
|
|
|
|
|
compile-fail array_fail_upa_sp_c.cpp ;
|
|
|
|
|
compile-fail array_fail_up_spa_c.cpp ;
|
|
|
|
|
|
|
|
|
|
compile-fail array_fail_spa_sp_mc.cpp ;
|
|
|
|
|
compile-fail array_fail_sp_spa_mc.cpp ;
|
|
|
|
|
compile-fail array_fail_spa_spa_mc.cpp ;
|
|
|
|
|
compile-fail array_fail_spa_wp_mc.cpp ;
|
|
|
|
|
compile-fail array_fail_sp_wpa_mc.cpp ;
|
|
|
|
|
compile-fail array_fail_spa_wpa_mc.cpp ;
|
|
|
|
|
compile-fail array_fail_wpa_wp_mc.cpp ;
|
|
|
|
|
compile-fail array_fail_wp_wpa_mc.cpp ;
|
|
|
|
|
compile-fail array_fail_wpa_wpa_mc.cpp ;
|
|
|
|
|
compile-fail array_fail_ap_spa_mc.cpp ;
|
|
|
|
|
compile-fail array_fail_upa_sp_mc.cpp ;
|
|
|
|
|
compile-fail array_fail_up_spa_mc.cpp ;
|
|
|
|
|
|
|
|
|
|
compile-fail array_fail_spa_sp_a.cpp ;
|
|
|
|
|
compile-fail array_fail_sp_spa_a.cpp ;
|
|
|
|
|
compile-fail array_fail_spa_spa_a.cpp ;
|
|
|
|
|
compile-fail array_fail_spa_wp_a.cpp ;
|
|
|
|
|
compile-fail array_fail_sp_wpa_a.cpp ;
|
|
|
|
|
compile-fail array_fail_spa_wpa_a.cpp ;
|
|
|
|
|
compile-fail array_fail_wpa_wp_a.cpp ;
|
|
|
|
|
compile-fail array_fail_wp_wpa_a.cpp ;
|
|
|
|
|
compile-fail array_fail_wpa_wpa_a.cpp ;
|
|
|
|
|
compile-fail array_fail_ap_spa_a.cpp ;
|
|
|
|
|
compile-fail array_fail_upa_sp_a.cpp ;
|
|
|
|
|
compile-fail array_fail_up_spa_a.cpp ;
|
|
|
|
|
|
|
|
|
|
compile-fail array_fail_spa_sp_ma.cpp ;
|
|
|
|
|
compile-fail array_fail_sp_spa_ma.cpp ;
|
|
|
|
|
compile-fail array_fail_spa_spa_ma.cpp ;
|
|
|
|
|
compile-fail array_fail_spa_wp_ma.cpp ;
|
|
|
|
|
compile-fail array_fail_sp_wpa_ma.cpp ;
|
|
|
|
|
compile-fail array_fail_spa_wpa_ma.cpp ;
|
|
|
|
|
compile-fail array_fail_wpa_wp_ma.cpp ;
|
|
|
|
|
compile-fail array_fail_wp_wpa_ma.cpp ;
|
|
|
|
|
compile-fail array_fail_wpa_wpa_ma.cpp ;
|
|
|
|
|
compile-fail array_fail_ap_spa_ma.cpp ;
|
|
|
|
|
compile-fail array_fail_upa_sp_ma.cpp ;
|
|
|
|
|
compile-fail array_fail_up_spa_ma.cpp ;
|
|
|
|
|
|
|
|
|
|
compile-fail array_fail_dereference.cpp ;
|
|
|
|
|
compile-fail array_fail_member_access.cpp ;
|
|
|
|
|
compile-fail array_fail_array_access.cpp ;
|
|
|
|
|
|
2024-09-25 19:28:18 +03:00
|
|
|
run make_shared_array_test.cpp ;
|
2020-01-08 05:08:37 +02:00
|
|
|
run make_shared_arrays_test.cpp ;
|
2024-09-25 19:28:18 +03:00
|
|
|
run make_shared_array_throws_test.cpp ;
|
|
|
|
|
run make_shared_array_esft_test.cpp ;
|
|
|
|
|
run make_shared_array_noinit_test.cpp ;
|
|
|
|
|
run make_shared_array_value_test.cpp ;
|
2017-06-21 04:07:17 +03:00
|
|
|
run allocate_shared_array_test.cpp ;
|
2020-01-08 05:08:37 +02:00
|
|
|
run allocate_shared_arrays_test.cpp ;
|
2024-09-25 19:28:18 +03:00
|
|
|
run allocate_shared_array_throws_test.cpp ;
|
|
|
|
|
run allocate_shared_array_esft_test.cpp ;
|
|
|
|
|
run allocate_shared_array_noinit_test.cpp ;
|
|
|
|
|
run allocate_shared_array_value_test.cpp ;
|
2017-06-21 04:07:17 +03:00
|
|
|
run allocate_shared_array_construct_test.cpp ;
|
|
|
|
|
|
|
|
|
|
run make_unique_test.cpp ;
|
|
|
|
|
run make_unique_args_test.cpp ;
|
2024-09-25 19:28:18 +03:00
|
|
|
run make_unique_value_test.cpp ;
|
2017-06-21 04:07:17 +03:00
|
|
|
run make_unique_noinit_test.cpp ;
|
|
|
|
|
run make_unique_throws_test.cpp ;
|
|
|
|
|
run make_unique_array_test.cpp ;
|
|
|
|
|
run make_unique_array_noinit_test.cpp ;
|
|
|
|
|
run make_unique_array_throws_test.cpp ;
|
|
|
|
|
|
|
|
|
|
run shared_from_raw_test.cpp ;
|
|
|
|
|
run shared_from_raw_test2.cpp ;
|
|
|
|
|
run shared_from_raw_test3.cpp ;
|
|
|
|
|
run shared_from_raw_test4.cpp ;
|
|
|
|
|
run shared_from_raw_test5.cpp ;
|
|
|
|
|
run shared_from_raw_test6.cpp ;
|
|
|
|
|
|
|
|
|
|
run weak_from_raw_test.cpp ;
|
|
|
|
|
run weak_from_raw_test2.cpp ;
|
|
|
|
|
run weak_from_raw_test3.cpp ;
|
|
|
|
|
run weak_from_raw_test4.cpp ;
|
|
|
|
|
run weak_from_raw_test5.cpp ;
|
|
|
|
|
|
|
|
|
|
compile sp_explicit_inst_test.cpp ;
|
|
|
|
|
|
|
|
|
|
run weak_from_this_test.cpp ;
|
|
|
|
|
run weak_from_this_test2.cpp ;
|
|
|
|
|
|
|
|
|
|
run sp_bml_unique_ptr_test.cpp ;
|
|
|
|
|
|
2024-10-07 14:19:59 +03:00
|
|
|
run sp_hash_test2.cpp ;
|
|
|
|
|
run sp_hash_test3.cpp ;
|
2017-06-21 04:07:17 +03:00
|
|
|
|
|
|
|
|
run pointer_cast_test2.cpp ;
|
|
|
|
|
|
|
|
|
|
compile-fail pointer_cast_st_fail.cpp ;
|
|
|
|
|
compile-fail pointer_cast_st_fail2.cpp ;
|
|
|
|
|
compile-fail pointer_cast_st_fail3.cpp ;
|
|
|
|
|
|
|
|
|
|
compile-fail pointer_cast_co_fail.cpp ;
|
|
|
|
|
compile-fail pointer_cast_co_fail2.cpp ;
|
|
|
|
|
compile-fail pointer_cast_co_fail3.cpp ;
|
|
|
|
|
|
|
|
|
|
compile-fail pointer_cast_dy_fail.cpp ;
|
|
|
|
|
compile-fail pointer_cast_dy_fail2.cpp ;
|
|
|
|
|
compile-fail pointer_cast_dy_fail3.cpp ;
|
|
|
|
|
|
|
|
|
|
run sp_nothrow_test.cpp ;
|
|
|
|
|
|
|
|
|
|
compile make_shared_msvc_test.cpp ;
|
|
|
|
|
|
|
|
|
|
compile lwm_win32_cs_test.cpp ;
|
|
|
|
|
|
2024-10-07 14:19:59 +03:00
|
|
|
run atomic_sp_test.cpp ;
|
2017-06-21 04:07:17 +03:00
|
|
|
|
|
|
|
|
run sp_constexpr_test.cpp ;
|
|
|
|
|
run sp_constexpr_test2.cpp ;
|
2025-05-08 14:06:04 +02:00
|
|
|
compile ip_constexpr_test.cpp ;
|
2017-06-21 04:07:17 +03:00
|
|
|
|
|
|
|
|
run atomic_sp_constexpr_test.cpp ;
|
|
|
|
|
|
|
|
|
|
run shared_ptr_fn_test.cpp ;
|
|
|
|
|
|
|
|
|
|
run get_deleter_test2.cpp ;
|
|
|
|
|
run get_deleter_test3.cpp ;
|
|
|
|
|
run get_deleter_array_test2.cpp ;
|
2024-09-25 19:28:18 +03:00
|
|
|
run get_deleter_array_test3.cpp ;
|
2017-06-21 04:07:17 +03:00
|
|
|
|
|
|
|
|
run sp_convertible_test2.cpp ;
|
|
|
|
|
|
|
|
|
|
run local_sp_test.cpp ;
|
|
|
|
|
run lsp_array_test.cpp ;
|
|
|
|
|
run lsp_array_n_test.cpp ;
|
|
|
|
|
run lsp_array_cv_test.cpp ;
|
|
|
|
|
run lsp_array_cast_test.cpp ;
|
|
|
|
|
|
|
|
|
|
run get_local_deleter_test.cpp ;
|
|
|
|
|
run get_local_deleter_test2.cpp ;
|
|
|
|
|
run get_local_deleter_test3.cpp ;
|
|
|
|
|
run get_local_deleter_array_test.cpp ;
|
|
|
|
|
run get_local_deleter_array_test2.cpp ;
|
|
|
|
|
|
|
|
|
|
run make_local_shared_test.cpp ;
|
|
|
|
|
run make_local_shared_esft_test.cpp ;
|
|
|
|
|
run allocate_local_shared_test.cpp ;
|
|
|
|
|
run allocate_local_shared_esft_test.cpp ;
|
|
|
|
|
|
2017-06-29 12:46:39 -04:00
|
|
|
run make_local_shared_array_test.cpp ;
|
2024-09-25 19:28:18 +03:00
|
|
|
run make_local_shared_arrays_test.cpp ;
|
2017-06-29 12:46:39 -04:00
|
|
|
run make_local_shared_array_throws_test.cpp ;
|
|
|
|
|
run make_local_shared_array_esft_test.cpp ;
|
|
|
|
|
run make_local_shared_array_noinit_test.cpp ;
|
|
|
|
|
run make_local_shared_array_value_test.cpp ;
|
|
|
|
|
run allocate_local_shared_array_test.cpp ;
|
2024-09-25 19:28:18 +03:00
|
|
|
run allocate_local_shared_arrays_test.cpp ;
|
2017-06-29 12:46:39 -04:00
|
|
|
run allocate_local_shared_array_throws_test.cpp ;
|
|
|
|
|
run allocate_local_shared_array_esft_test.cpp ;
|
|
|
|
|
run allocate_local_shared_array_noinit_test.cpp ;
|
|
|
|
|
run allocate_local_shared_array_value_test.cpp ;
|
|
|
|
|
run allocate_local_shared_array_construct_test.cpp ;
|
|
|
|
|
|
2017-06-21 04:07:17 +03:00
|
|
|
run local_sp_fn_test.cpp ;
|
|
|
|
|
run lsp_convertible_test.cpp ;
|
|
|
|
|
run lsp_convertible_test2.cpp ;
|
2017-11-02 17:45:17 +02:00
|
|
|
|
2024-09-25 19:28:18 +03:00
|
|
|
run make_shared_array_tmp_test.cpp ;
|
2018-02-19 02:02:31 +02:00
|
|
|
|
2020-01-08 05:08:37 +02:00
|
|
|
run lw_thread_test.cpp
|
|
|
|
|
: : : <threading>multi ;
|
2018-03-11 23:00:50 +02:00
|
|
|
|
|
|
|
|
compile sp_windows_h_test.cpp ;
|
|
|
|
|
compile spinlock_windows_h_test.cpp ;
|
|
|
|
|
compile yield_k_windows_h_test.cpp ;
|
2018-09-17 21:50:47 +03:00
|
|
|
|
|
|
|
|
lib dll_test : dll_test_lib.cpp : <link>shared:<define>DLL_TEST_DYN_LINK=1 ;
|
2018-12-22 22:56:20 +02:00
|
|
|
explicit dll_test ;
|
2018-09-17 21:50:47 +03:00
|
|
|
|
|
|
|
|
run dll_test_main.cpp dll_test : : : <link>static : dll_test_static ;
|
2023-03-06 07:00:23 +02:00
|
|
|
run dll_test_main.cpp dll_test : : : <link>shared <undefined-sanitizer>norecover:<build>no : dll_test_shared ;
|
2018-11-10 20:44:00 +02:00
|
|
|
|
|
|
|
|
run make_shared_const_test.cpp ;
|
2018-11-10 21:04:22 +02:00
|
|
|
run make_local_shared_const_test.cpp ;
|
2018-12-22 22:56:20 +02:00
|
|
|
|
|
|
|
|
lib abi_test_mt : abi_test_lib.cpp : <link>static ;
|
|
|
|
|
explicit abi_test_mt ;
|
|
|
|
|
|
|
|
|
|
obj abi_test_lib_nt : abi_test_lib.cpp : <define>BOOST_DISABLE_THREADS ;
|
|
|
|
|
explicit abi_test_lib_nt ;
|
|
|
|
|
|
|
|
|
|
lib abi_test_nt : abi_test_lib_nt : <link>static ;
|
|
|
|
|
explicit abi_test_nt ;
|
|
|
|
|
|
|
|
|
|
run abi_test_main.cpp abi_test_mt : : : <define>BOOST_DISABLE_THREADS : abi_test_nt_mt ;
|
|
|
|
|
run abi_test_main.cpp abi_test_nt : : : : abi_test_mt_nt ;
|
|
|
|
|
|
2024-09-24 19:43:45 +03:00
|
|
|
# run abi_test_main.cpp abi_test_mt/<cxxstd>0x : : : <cxxstd>98 : abi_test_03_11 ;
|
|
|
|
|
# run abi_test_main.cpp abi_test_mt/<cxxstd>98 : : : <cxxstd>0x : abi_test_11_03 ;
|
2019-04-21 22:44:09 +03:00
|
|
|
|
|
|
|
|
run weak_ptr_alias_test.cpp ;
|
|
|
|
|
run weak_ptr_alias_move_test.cpp ;
|
2019-04-22 05:43:08 +03:00
|
|
|
|
|
|
|
|
run sp_typeinfo_test.cpp : : : <rtti>off : sp_typeinfo_test_no_rtti ;
|
|
|
|
|
|
2024-09-25 19:28:18 +03:00
|
|
|
run get_deleter_test.cpp : : : <rtti>off : get_deleter_test_no_rtti ;
|
|
|
|
|
run get_deleter_test2.cpp : : : <rtti>off : get_deleter_test2_no_rtti ;
|
|
|
|
|
run get_deleter_test3.cpp : : : <rtti>off : get_deleter_test3_no_rtti ;
|
2019-04-24 04:50:59 +03:00
|
|
|
|
|
|
|
|
run shared_from_test.cpp ;
|
|
|
|
|
run weak_from_test.cpp ;
|
|
|
|
|
run weak_from_test2.cpp ;
|
2019-08-28 22:59:59 -04:00
|
|
|
|
2019-08-30 08:16:11 -04:00
|
|
|
run allocate_unique_aggregate_test.cpp ;
|
2019-08-28 22:59:59 -04:00
|
|
|
run allocate_unique_args_test.cpp ;
|
|
|
|
|
run allocate_unique_array_construct_test.cpp ;
|
|
|
|
|
run allocate_unique_array_noinit_test.cpp ;
|
|
|
|
|
run allocate_unique_arrays_test.cpp ;
|
|
|
|
|
run allocate_unique_array_test.cpp ;
|
|
|
|
|
run allocate_unique_array_throws_test.cpp ;
|
|
|
|
|
run allocate_unique_array_value_test.cpp ;
|
|
|
|
|
run allocate_unique_construct_test.cpp ;
|
|
|
|
|
run allocate_unique_noinit_test.cpp ;
|
|
|
|
|
run allocate_unique_test.cpp ;
|
|
|
|
|
run allocate_unique_throws_test.cpp ;
|
2019-08-30 08:16:11 -04:00
|
|
|
run allocate_unique_value_test.cpp ;
|
2021-12-15 22:40:41 -05:00
|
|
|
run get_allocator_pointer_test.cpp ;
|
2020-04-02 00:28:02 +03:00
|
|
|
|
|
|
|
|
run sp_guides_test.cpp ;
|
|
|
|
|
run sp_guides_test2.cpp ;
|
|
|
|
|
run wp_guides_test.cpp ;
|
2020-04-02 02:16:59 +03:00
|
|
|
|
|
|
|
|
compile-fail shared_from_fail.cpp ;
|
|
|
|
|
compile-fail weak_from_fail.cpp ;
|
2020-04-08 21:25:36 +03:00
|
|
|
|
2020-04-14 00:15:32 +03:00
|
|
|
compile sp_override_test.cpp ;
|
2024-01-06 15:35:52 +02:00
|
|
|
|
|
|
|
|
local gcc-flags = -Wundef ;
|
|
|
|
|
|
2020-04-28 05:05:57 +03:00
|
|
|
compile sp_pedantic_test.cpp
|
|
|
|
|
: <warnings>pedantic
|
|
|
|
|
<toolset>msvc:<warnings-as-errors>on
|
|
|
|
|
<toolset>gcc:<warnings-as-errors>on
|
2024-01-06 15:35:52 +02:00
|
|
|
<toolset>gcc:<cxxflags>$(gcc-flags)
|
2022-10-19 20:52:55 +03:00
|
|
|
<toolset>clang:<warnings-as-errors>on
|
2024-01-06 15:35:52 +02:00
|
|
|
<toolset>clang:<cxxflags>$(gcc-flags)
|
2022-10-19 20:52:55 +03:00
|
|
|
<toolset>clang-15:<cxxflags>-Wno-deprecated-builtins
|
|
|
|
|
;
|
2020-05-31 20:33:24 +03:00
|
|
|
|
|
|
|
|
run sp_owner_before_test.cpp ;
|
2020-05-31 21:41:06 +03:00
|
|
|
run sp_owner_equals_test.cpp ;
|
2020-06-01 01:16:46 +03:00
|
|
|
run lsp_owner_before_test.cpp ;
|
2020-06-01 01:35:25 +03:00
|
|
|
run lsp_owner_equals_test.cpp ;
|
2020-06-01 03:05:34 +03:00
|
|
|
|
|
|
|
|
run owner_equal_to_test.cpp ;
|
|
|
|
|
run owner_equal_to_test2.cpp ;
|
2020-06-01 03:13:42 +03:00
|
|
|
|
|
|
|
|
run owner_less_test2.cpp ;
|
2020-06-02 05:59:23 +03:00
|
|
|
|
|
|
|
|
run ip_hash_test2.cpp ;
|
|
|
|
|
run sp_hash_test4.cpp ;
|
2023-10-18 15:20:57 +03:00
|
|
|
|
2024-10-07 14:19:59 +03:00
|
|
|
run lsp_hash_test.cpp ;
|
2020-06-02 05:59:23 +03:00
|
|
|
run lsp_hash_test2.cpp ;
|
2020-06-02 18:58:45 +03:00
|
|
|
|
|
|
|
|
run atomic_count_mt_test.cpp
|
2024-10-07 14:19:59 +03:00
|
|
|
: : : <threading>multi ;
|
2020-06-02 18:58:45 +03:00
|
|
|
|
|
|
|
|
run spinlock_mt_test.cpp
|
2024-10-07 14:19:59 +03:00
|
|
|
: : : <threading>multi ;
|
2020-06-02 18:58:45 +03:00
|
|
|
|
|
|
|
|
run spinlock_pool_mt_test.cpp
|
2024-10-07 14:19:59 +03:00
|
|
|
: : : <threading>multi ;
|
2020-06-02 18:58:45 +03:00
|
|
|
|
|
|
|
|
run shared_ptr_mt_test.cpp
|
2024-10-07 14:19:59 +03:00
|
|
|
: : : <threading>multi ;
|
2020-06-02 18:58:45 +03:00
|
|
|
|
|
|
|
|
run weak_ptr_mt_test.cpp
|
2024-10-07 14:19:59 +03:00
|
|
|
: : : <threading>multi ;
|
2020-06-02 18:58:45 +03:00
|
|
|
|
2020-06-02 20:51:38 +03:00
|
|
|
compile sp_report_implementation.cpp ;
|
2020-06-04 20:40:57 +03:00
|
|
|
|
|
|
|
|
run sp_owner_hash_value_test.cpp ;
|
|
|
|
|
|
2024-10-07 14:19:59 +03:00
|
|
|
run wp_hash_test.cpp ;
|
2020-06-04 20:40:57 +03:00
|
|
|
run wp_hash_test2.cpp ;
|
2020-06-04 20:52:17 +03:00
|
|
|
|
|
|
|
|
run wp_unordered_test.cpp ;
|
2020-06-05 18:45:00 +03:00
|
|
|
|
|
|
|
|
run owner_hash_test.cpp ;
|
2020-06-05 18:54:44 +03:00
|
|
|
run sp_unordered_test.cpp ;
|
2021-05-11 01:20:02 +03:00
|
|
|
|
|
|
|
|
run sp_unique_ptr_test2.cpp ;
|
2021-05-11 01:59:01 +03:00
|
|
|
run sp_move_only_deleter.cpp ;
|
2024-10-06 19:54:45 +03:00
|
|
|
|
|
|
|
|
run sp_is_bounded_array_test.cpp ;
|
2024-10-06 19:58:40 +03:00
|
|
|
run sp_is_unbounded_array_test.cpp ;
|
2024-10-06 20:29:27 +03:00
|
|
|
run sp_type_identity_test.cpp ;
|
2024-10-06 20:56:48 +03:00
|
|
|
run sp_type_with_alignment_test.cpp ;
|
2025-01-13 15:24:45 +02:00
|
|
|
|
|
|
|
|
run sp_ostream_test.cpp ;
|
|
|
|
|
run ip_ostream_test.cpp ;
|
|
|
|
|
run lsp_ostream_test.cpp ;
|
2025-10-24 17:21:29 +03:00
|
|
|
|
|
|
|
|
run shared_ptr_alloc_test.cpp ;
|
|
|
|
|
run quick_allocator_test.cpp ;
|