2014-06-01 01:48:14 +03:00
|
|
|
# Boost.Core Library test Jamfile
|
|
|
|
#
|
2021-10-05 17:32:50 +03:00
|
|
|
# Copyright (c) 2014-2021 Peter Dimov
|
2014-06-01 01:48:14 +03:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2016-07-11 17:08:28 +03:00
|
|
|
import modules ;
|
2014-06-01 01:48:14 +03:00
|
|
|
import testing ;
|
|
|
|
|
2021-11-01 01:24:02 +02:00
|
|
|
project : requirements
|
|
|
|
|
|
|
|
<warnings>extra
|
|
|
|
<toolset>msvc:<warnings-as-errors>on
|
|
|
|
<toolset>clang:<warnings-as-errors>on
|
2021-11-01 03:14:53 +02:00
|
|
|
<toolset>gcc:<warnings-as-errors>on
|
|
|
|
<toolset>gcc-4.4:<cxxflags>-Wno-sign-compare ;
|
2021-11-01 01:24:02 +02:00
|
|
|
|
2021-11-01 01:35:57 +02:00
|
|
|
local warning-as-errors-off =
|
|
|
|
"-<toolset>msvc:<warnings-as-errors>on"
|
|
|
|
"-<toolset>gcc:<warnings-as-errors>on"
|
|
|
|
"-<toolset>clang:<warnings-as-errors>on" ;
|
|
|
|
|
2017-09-04 15:32:13 +03:00
|
|
|
# quick test (for CI)
|
|
|
|
run quick.cpp ;
|
|
|
|
|
|
|
|
# full test suite
|
2014-06-05 17:15:24 +03:00
|
|
|
run addressof_test.cpp ;
|
|
|
|
run addressof_test2.cpp ;
|
|
|
|
run addressof_np_test.cpp ;
|
|
|
|
run addressof_fn_test.cpp ;
|
2017-01-30 17:34:49 -05:00
|
|
|
compile addressof_constexpr_test.cpp ;
|
2021-11-01 01:35:57 +02:00
|
|
|
compile-fail addressof_fail_rvalue.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
2014-06-05 17:15:24 +03:00
|
|
|
|
|
|
|
run checked_delete_test.cpp ;
|
2021-11-01 01:35:57 +02:00
|
|
|
compile-fail checked_delete_fail.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
|
|
|
compile-fail checked_delete_fail2.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
2014-06-05 17:15:24 +03:00
|
|
|
|
|
|
|
compile ref_ct_test.cpp ;
|
|
|
|
run ref_test.cpp ;
|
2014-06-10 03:37:21 +03:00
|
|
|
run ref_ref_test.cpp ;
|
2014-06-10 04:51:38 +03:00
|
|
|
run ref_fn_test.cpp ;
|
2021-11-01 01:35:57 +02:00
|
|
|
compile-fail ref_rv_fail1.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
|
|
|
compile-fail ref_rv_fail2.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
|
|
|
compile-fail ref_rv_fail3.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
|
|
|
compile-fail ref_rv_fail4.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
|
|
|
compile-fail ref_rv_fail5.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
|
|
|
compile-fail ref_implicit_fail.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
|
|
|
compile-fail ref_implicit_fail2.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
|
|
|
compile-fail ref_implicit_fail3.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
|
|
|
compile-fail ref_implicit_fail4.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
2017-02-02 18:40:06 +02:00
|
|
|
run ref_cv_test.cpp ;
|
2020-11-19 18:57:56 +02:00
|
|
|
run ref_conversion_test.cpp ;
|
2014-06-05 17:15:24 +03:00
|
|
|
|
2021-10-16 18:10:13 +03:00
|
|
|
run eif_constructors.cpp : ;
|
|
|
|
run eif_dummy_arg_disambiguation.cpp : ;
|
|
|
|
run eif_lazy.cpp : ;
|
|
|
|
run eif_lazy_test.cpp : ;
|
|
|
|
run eif_member_templates.cpp : ;
|
|
|
|
run eif_namespace_disambiguation.cpp : ;
|
|
|
|
run eif_no_disambiguation.cpp : ;
|
|
|
|
run eif_partial_specializations.cpp : ;
|
2014-06-05 17:15:24 +03:00
|
|
|
|
2021-11-01 01:35:57 +02:00
|
|
|
compile-fail noncopyable_compile_fail.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
2014-06-12 19:53:08 +04:00
|
|
|
|
2014-06-05 17:15:24 +03:00
|
|
|
run explicit_operator_bool.cpp ;
|
|
|
|
run explicit_operator_bool_noexcept.cpp ;
|
2021-11-01 01:35:57 +02:00
|
|
|
compile-fail explicit_operator_bool_compile_fail_conv_int.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
|
|
|
compile-fail explicit_operator_bool_compile_fail_conv_pvoid.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
|
|
|
compile-fail explicit_operator_bool_compile_fail_delete.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
|
|
|
compile-fail explicit_operator_bool_compile_fail_shift.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
2014-06-05 17:15:24 +03:00
|
|
|
|
2021-11-01 01:35:57 +02:00
|
|
|
compile ignore_unused_test.cpp ;
|
2020-01-02 20:00:11 +02:00
|
|
|
|
2014-06-05 17:15:24 +03:00
|
|
|
run sp_typeinfo_test.cpp ;
|
|
|
|
run sp_typeinfo_test.cpp : : : <rtti>off : sp_typeinfo_test_no_rtti ;
|
|
|
|
|
|
|
|
run visit_each_test.cpp ;
|
|
|
|
|
|
|
|
run get_pointer_test.cpp ;
|
|
|
|
|
2020-04-27 22:29:28 +03:00
|
|
|
local pedantic-errors = <warnings>pedantic
|
2020-04-27 18:47:45 +03:00
|
|
|
<toolset>msvc:<warnings-as-errors>on
|
|
|
|
<toolset>gcc:<warnings-as-errors>on
|
|
|
|
<toolset>clang:<warnings-as-errors>on ;
|
2020-04-27 22:29:28 +03:00
|
|
|
|
|
|
|
run lightweight_test_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run lightweight_test_test.cpp : : :
|
|
|
|
<exception-handling>off $(pedantic-errors) : lightweight_test_test_no_except ;
|
|
|
|
run lightweight_test_test2.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run lightweight_test_all_with_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run lightweight_test_lt_le_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run lightweight_test_gt_ge_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run lightweight_test_eq_nullptr.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run lightweight_test_test3.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run lightweight_test_test4.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
2020-01-02 20:00:11 +02:00
|
|
|
run lightweight_test_test5.cpp
|
2020-04-27 22:29:28 +03:00
|
|
|
: : : $(pedantic-errors)
|
2021-06-10 04:58:17 +03:00
|
|
|
<toolset>gcc-4.4.7:<cxxflags>-Wno-sign-compare
|
|
|
|
<toolset>gcc-4.4:<cxxflags>-Wno-sign-compare
|
|
|
|
;
|
2021-01-20 01:10:57 +02:00
|
|
|
run lightweight_test_test6.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
2017-05-29 21:15:49 +03:00
|
|
|
|
2019-04-20 10:11:16 +03:00
|
|
|
run-fail lightweight_test_all_eq_test.cpp ;
|
|
|
|
run-fail lightweight_test_all_with_fail.cpp ;
|
|
|
|
|
2014-06-05 17:15:24 +03:00
|
|
|
run-fail lightweight_test_fail.cpp ;
|
|
|
|
run-fail lightweight_test_fail2.cpp ;
|
|
|
|
run-fail lightweight_test_fail3.cpp ;
|
|
|
|
run-fail lightweight_test_fail4.cpp ;
|
|
|
|
run-fail lightweight_test_fail5.cpp ;
|
|
|
|
run-fail lightweight_test_fail6.cpp ;
|
2014-06-06 02:34:46 +03:00
|
|
|
run-fail lightweight_test_fail7.cpp ;
|
2021-10-05 17:11:31 +03:00
|
|
|
run-fail lightweight_test_fail7.cpp : : : <rtti>off <toolset>gcc-4.4:<build>no : lightweight_test_fail7_no_rtti ;
|
2014-06-06 02:34:46 +03:00
|
|
|
run-fail lightweight_test_fail8.cpp ;
|
2021-10-05 17:11:31 +03:00
|
|
|
run-fail lightweight_test_fail8.cpp : : : <rtti>off <toolset>gcc-4.4:<build>no : lightweight_test_fail8_no_rtti ;
|
2017-02-07 15:05:08 +00:00
|
|
|
run-fail lightweight_test_fail9.cpp ;
|
|
|
|
run-fail lightweight_test_fail10.cpp ;
|
2020-01-02 21:05:07 +02:00
|
|
|
run-fail lightweight_test_fail11.cpp : ;
|
2019-04-20 08:55:50 +02:00
|
|
|
run-fail lightweight_test_fail12.cpp ;
|
2020-04-30 21:01:10 -04:00
|
|
|
run-fail lightweight_test_fail13.cpp ;
|
|
|
|
run-fail lightweight_test_fail14.cpp ;
|
2021-01-20 02:04:30 +02:00
|
|
|
run-fail lightweight_test_fail15.cpp ;
|
2017-03-16 01:31:43 +02:00
|
|
|
run-fail lightweight_test_lt_fail.cpp ;
|
|
|
|
run-fail lightweight_test_le_fail.cpp ;
|
2017-06-18 01:10:43 +09:00
|
|
|
run-fail lightweight_test_gt_fail.cpp ;
|
|
|
|
run-fail lightweight_test_ge_fail.cpp ;
|
2014-06-06 02:34:46 +03:00
|
|
|
|
2020-04-27 22:29:28 +03:00
|
|
|
run lightweight_test_bool.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
2020-02-16 20:52:59 +02:00
|
|
|
|
2020-06-06 21:54:16 +03:00
|
|
|
run lightweight_test_with_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run-fail lightweight_test_with_fail.cpp ;
|
|
|
|
|
2014-06-06 02:34:46 +03:00
|
|
|
run is_same_test.cpp ;
|
|
|
|
|
|
|
|
run typeinfo_test.cpp ;
|
|
|
|
run typeinfo_test.cpp : : : <rtti>off : typeinfo_test_no_rtti ;
|
|
|
|
|
|
|
|
run iterator_test.cpp ;
|
2014-06-06 03:07:46 +03:00
|
|
|
run detail_iterator_test.cpp ;
|
2014-06-06 15:49:29 +03:00
|
|
|
|
2020-01-02 20:00:11 +02:00
|
|
|
run demangle_test.cpp
|
|
|
|
: : : <test-info>always_show_run_output ;
|
|
|
|
|
|
|
|
run demangled_name_test.cpp
|
|
|
|
: : : <test-info>always_show_run_output ;
|
2014-06-06 23:30:32 +03:00
|
|
|
|
|
|
|
run demangled_name_test.cpp : : : <rtti>off <test-info>always_show_run_output : demangled_name_test_no_rtti ;
|
2014-06-07 02:30:29 +04:00
|
|
|
|
|
|
|
run scoped_enum.cpp ;
|
2021-11-01 01:35:57 +02:00
|
|
|
compile-fail scoped_enum_compile_fail_conv_from_int.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
|
|
|
compile-fail scoped_enum_compile_fail_conv_to_int.cpp
|
|
|
|
: $(warning-as-errors-off) ;
|
2014-06-07 02:30:29 +04:00
|
|
|
|
|
|
|
run underlying_type.cpp ;
|
2016-07-11 17:08:28 +03:00
|
|
|
|
2017-05-16 07:11:46 -04:00
|
|
|
run pointer_traits_pointer_test.cpp ;
|
|
|
|
run pointer_traits_element_type_test.cpp ;
|
|
|
|
run pointer_traits_difference_type_test.cpp ;
|
|
|
|
run pointer_traits_rebind_test.cpp ;
|
|
|
|
run pointer_traits_pointer_to_test.cpp ;
|
2021-12-12 19:03:57 -05:00
|
|
|
run pointer_traits_sfinae_test.cpp ;
|
|
|
|
run pointer_traits_rebind_sfinae_test.cpp ;
|
|
|
|
run pointer_traits_pointer_to_sfinae_test.cpp ;
|
2017-07-21 06:21:50 -04:00
|
|
|
run to_address_test.cpp ;
|
2017-05-16 07:11:46 -04:00
|
|
|
|
2018-07-07 23:13:03 -04:00
|
|
|
run exchange_test.cpp ;
|
|
|
|
run exchange_move_test.cpp ;
|
|
|
|
|
2019-05-13 13:55:54 -04:00
|
|
|
run first_scalar_test.cpp ;
|
|
|
|
compile first_scalar_constexpr_test.cpp ;
|
|
|
|
|
2018-08-22 11:09:31 -04:00
|
|
|
run empty_value_test.cpp ;
|
|
|
|
run empty_value_size_test.cpp ;
|
2019-02-19 01:50:10 -05:00
|
|
|
run empty_value_final_test.cpp ;
|
2018-08-22 11:09:31 -04:00
|
|
|
|
2018-09-05 17:06:42 +03:00
|
|
|
run quick_exit_test.cpp ;
|
|
|
|
run-fail quick_exit_fail.cpp ;
|
|
|
|
|
2019-02-22 16:51:33 -05:00
|
|
|
compile use_default_test.cpp ;
|
|
|
|
|
2020-04-27 14:22:57 -04:00
|
|
|
run default_allocator_test.cpp
|
|
|
|
: : : <warnings>pedantic
|
|
|
|
<toolset>msvc:<warnings-as-errors>on
|
|
|
|
<toolset>gcc:<warnings-as-errors>on
|
|
|
|
<toolset>clang:<warnings-as-errors>on ;
|
2021-12-04 14:41:23 -05:00
|
|
|
run default_allocator_allocate_hint_test.cpp ;
|
2020-04-27 14:22:57 -04:00
|
|
|
|
2019-04-27 19:14:10 -04:00
|
|
|
run noinit_adaptor_test.cpp ;
|
2019-05-02 09:43:31 -04:00
|
|
|
run alloc_construct_test.cpp ;
|
|
|
|
run alloc_construct_throws_test.cpp ;
|
|
|
|
run alloc_construct_cxx11_test.cpp ;
|
2019-04-24 22:21:13 -04:00
|
|
|
|
2019-09-04 00:56:52 -04:00
|
|
|
run nvp_test.cpp ;
|
|
|
|
|
2020-04-13 01:43:43 -04:00
|
|
|
run allocator_value_type_test.cpp ;
|
|
|
|
run allocator_pointer_test.cpp ;
|
|
|
|
run allocator_const_pointer_test.cpp ;
|
|
|
|
run allocator_void_pointer_test.cpp ;
|
|
|
|
run allocator_const_void_pointer_test.cpp ;
|
|
|
|
run allocator_difference_type_test.cpp ;
|
|
|
|
run allocator_size_type_test.cpp ;
|
|
|
|
run allocator_pocca_test.cpp ;
|
|
|
|
run allocator_pocma_test.cpp ;
|
|
|
|
run allocator_pocs_test.cpp ;
|
|
|
|
run allocator_is_always_equal_test.cpp ;
|
|
|
|
run allocator_rebind_test.cpp ;
|
|
|
|
run allocator_allocate_test.cpp ;
|
|
|
|
run allocator_allocate_hint_test.cpp ;
|
|
|
|
run allocator_deallocate_test.cpp ;
|
|
|
|
run allocator_max_size_test.cpp ;
|
|
|
|
run allocator_soccc_test.cpp ;
|
2021-12-02 23:39:47 -05:00
|
|
|
run allocator_traits_test.cpp ;
|
2020-04-13 01:43:43 -04:00
|
|
|
|
2018-10-21 17:47:33 +03:00
|
|
|
lib lib_typeid : lib_typeid.cpp : <link>shared:<define>LIB_TYPEID_DYN_LINK=1 ;
|
|
|
|
|
|
|
|
run test_lib_typeid.cpp lib_typeid : : : <link>shared : test_lib_typeid_shared ;
|
|
|
|
run test_lib_typeid.cpp lib_typeid : : : <link>static : test_lib_typeid_static ;
|
|
|
|
|
|
|
|
run test_lib_typeid.cpp lib_typeid : : : <link>shared <rtti>off : test_lib_typeid_shared_no_rtti ;
|
2019-04-19 17:32:05 +03:00
|
|
|
run test_lib_typeid.cpp lib_typeid : : : <link>static <rtti>off : test_lib_typeid_static_no_rtti ;
|
2018-10-21 17:47:33 +03:00
|
|
|
|
2021-02-11 04:43:05 +02:00
|
|
|
run test_lib_typeid2.cpp lib_typeid : : : <link>shared : test_lib_typeid2_shared ;
|
|
|
|
run test_lib_typeid2.cpp lib_typeid : : : <link>static : test_lib_typeid2_static ;
|
|
|
|
|
|
|
|
run test_lib_typeid2.cpp lib_typeid : : : <link>shared <rtti>off : test_lib_typeid2_shared_no_rtti ;
|
|
|
|
run test_lib_typeid2.cpp lib_typeid : : : <link>static <rtti>off : test_lib_typeid2_static_no_rtti ;
|
|
|
|
|
2020-01-02 20:00:11 +02:00
|
|
|
run uncaught_exceptions.cpp
|
|
|
|
: : : <exception-handling>on ;
|
|
|
|
run uncaught_exceptions_np.cpp
|
|
|
|
: : : <exception-handling>on ;
|
2018-11-10 17:44:13 +03:00
|
|
|
|
2021-10-16 18:10:13 +03:00
|
|
|
run no_exceptions_support_test.cpp : ;
|
2019-04-19 17:32:05 +03:00
|
|
|
run no_exceptions_support_test.cpp : : : <exception-handling>off : no_exceptions_support_test_nx ;
|
|
|
|
|
2022-02-08 21:37:34 +02:00
|
|
|
run cmath_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
2021-10-05 19:16:24 +03:00
|
|
|
run cmath_test.cpp : : : <define>BOOST_CORE_USE_GENERIC_CMATH <toolset>msvc-8.0:<build>no : cmath_test_generic ;
|
2020-12-24 00:19:20 +02:00
|
|
|
|
2022-02-08 21:37:34 +02:00
|
|
|
run bit_cast_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run bit_rotate_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run bit_countr_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run bit_countl_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run bit_width_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run has_single_bit_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run bit_floor_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run bit_ceil_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run bit_popcount_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
run bit_endian_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
2020-12-28 21:12:22 +02:00
|
|
|
|
2021-09-29 19:13:12 +03:00
|
|
|
run type_name_test.cpp ;
|
|
|
|
|
2021-10-04 16:49:46 +03:00
|
|
|
run sv_types_test.cpp ;
|
2021-10-04 17:25:34 +03:00
|
|
|
run sv_construct_test.cpp ;
|
2021-10-06 05:36:12 +03:00
|
|
|
run sv_iteration_test.cpp ;
|
2021-10-04 17:33:04 +03:00
|
|
|
run sv_element_access_test.cpp ;
|
2021-10-04 20:36:40 +03:00
|
|
|
run sv_modifiers_test.cpp ;
|
2021-10-04 20:45:10 +03:00
|
|
|
run sv_copy_test.cpp ;
|
2021-10-04 20:57:10 +03:00
|
|
|
run sv_substr_test.cpp ;
|
2021-10-04 22:11:14 +03:00
|
|
|
run sv_compare_test.cpp ;
|
2021-10-06 04:35:37 +03:00
|
|
|
run sv_starts_with_test.cpp ;
|
2021-10-06 04:39:16 +03:00
|
|
|
run sv_ends_with_test.cpp ;
|
2021-10-06 04:58:36 +03:00
|
|
|
run sv_find_test.cpp ;
|
2021-10-06 05:49:09 +03:00
|
|
|
run sv_rfind_test.cpp ;
|
2021-11-01 04:44:07 +02:00
|
|
|
run sv_find_first_of_test.cpp
|
|
|
|
: : : <toolset>gcc-4.4:<cxxflags>-Wno-type-limits ;
|
|
|
|
run sv_find_last_of_test.cpp
|
|
|
|
: : : <toolset>gcc-4.4:<cxxflags>-Wno-type-limits ;
|
|
|
|
run sv_find_first_not_of_test.cpp
|
|
|
|
: : : <toolset>gcc-4.4:<cxxflags>-Wno-type-limits ;
|
|
|
|
run sv_find_last_not_of_test.cpp
|
|
|
|
: : : <toolset>gcc-4.4:<cxxflags>-Wno-type-limits ;
|
2021-10-08 05:50:00 +03:00
|
|
|
run sv_contains_test.cpp ;
|
2021-10-09 16:50:14 +03:00
|
|
|
run sv_eq_test.cpp ;
|
2021-10-09 17:09:23 +03:00
|
|
|
run sv_lt_test.cpp ;
|
2021-10-09 17:36:06 +03:00
|
|
|
run sv_stream_insert_test.cpp ;
|
2021-10-09 18:36:05 +03:00
|
|
|
run sv_conversion_test.cpp ;
|
2021-12-18 03:28:17 +02:00
|
|
|
run sv_conversion_test2.cpp : ;
|
2021-12-18 07:34:16 +02:00
|
|
|
run sv_common_reference_test.cpp ;
|
2021-12-18 18:53:42 +02:00
|
|
|
compile sv_common_reference_test2.cpp ;
|
2021-12-20 01:30:32 +02:00
|
|
|
compile sv_windows_h_test.cpp ;
|
2021-10-04 16:49:46 +03:00
|
|
|
|
2021-10-27 01:41:40 -04:00
|
|
|
run span_test.cpp ;
|
|
|
|
run span_types_test.cpp ;
|
|
|
|
run span_constructible_test.cpp ;
|
|
|
|
run span_deduction_guide_test.cpp ;
|
|
|
|
run as_bytes_test.cpp ;
|
|
|
|
run as_writable_bytes_test.cpp ;
|
2021-10-13 08:37:37 -04:00
|
|
|
|
2022-02-08 22:48:01 +02:00
|
|
|
run splitmix64_test.cpp
|
|
|
|
: : : $(pedantic-errors) ;
|
|
|
|
|
2022-02-15 05:11:37 +02:00
|
|
|
run-fail verbose_terminate_handler_fail.cpp : ;
|
2022-02-15 01:34:14 +02:00
|
|
|
run-fail verbose_terminate_handler_fail.cpp : : : <exception-handling>off : verbose_terminate_handler_fail_nx ;
|
|
|
|
run-fail verbose_terminate_handler_fail.cpp : : : <rtti>off : verbose_terminate_handler_fail_nr ;
|
|
|
|
run-fail verbose_terminate_handler_fail.cpp : : : <exception-handling>off <rtti>off : verbose_terminate_handler_fail_nxr ;
|
|
|
|
|
2016-07-11 17:08:28 +03:00
|
|
|
use-project /boost/core/swap : ./swap ;
|
|
|
|
build-project ./swap ;
|