# Boost.Core Library test Jamfile # # Copyright (c) 2014, 2017 Peter Dimov # # 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 import modules ; import testing ; # quick test (for CI) run quick.cpp ; # full test suite run addressof_test.cpp ; run addressof_test2.cpp ; run addressof_np_test.cpp ; run addressof_fn_test.cpp ; compile addressof_constexpr_test.cpp ; compile-fail addressof_fail_rvalue.cpp ; run checked_delete_test.cpp ; compile-fail checked_delete_fail.cpp ; compile-fail checked_delete_fail2.cpp ; compile ref_ct_test.cpp ; run ref_test.cpp ; run ref_ref_test.cpp ; run ref_fn_test.cpp ; compile-fail ref_rv_fail1.cpp ; compile-fail ref_rv_fail2.cpp ; compile-fail ref_rv_fail3.cpp ; compile-fail ref_rv_fail4.cpp ; compile-fail ref_rv_fail5.cpp ; compile-fail ref_implicit_fail.cpp ; compile-fail ref_implicit_fail2.cpp ; run ref_cv_test.cpp ; 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 ; compile-fail noncopyable_compile_fail.cpp ; run explicit_operator_bool.cpp ; run explicit_operator_bool_noexcept.cpp ; compile-fail explicit_operator_bool_compile_fail_conv_int.cpp ; compile-fail explicit_operator_bool_compile_fail_conv_pvoid.cpp ; compile-fail explicit_operator_bool_compile_fail_delete.cpp ; compile-fail explicit_operator_bool_compile_fail_shift.cpp ; compile ignore_unused_test.cpp : gcc-4.8:"-Wunused-variable -Wunused-local-typedefs -Werror" gcc:"-Wunused-variable -Werror" clang:"-Wunused-variable -Werror" msvc:"/we4100 /we4101" ; run sp_typeinfo_test.cpp ; run sp_typeinfo_test.cpp : : : off : sp_typeinfo_test_no_rtti ; run visit_each_test.cpp ; run get_pointer_test.cpp ; run lightweight_test_test.cpp ; run lightweight_test_test.cpp : : : off : lightweight_test_test_no_except ; run lightweight_test_test2.cpp ; run lightweight_test_all_eq_test.cpp ; run lightweight_test_all_with_test.cpp ; run lightweight_test_all_with_fail.cpp ; run lightweight_test_lt_le_test.cpp ; run lightweight_test_gt_ge_test.cpp ; run lightweight_test_eq_nullptr.cpp ; 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 ; run-fail lightweight_test_fail7.cpp ; run-fail lightweight_test_fail7.cpp : : : off : lightweight_test_fail7_no_rtti ; run-fail lightweight_test_fail8.cpp ; run-fail lightweight_test_fail8.cpp : : : off : lightweight_test_fail8_no_rtti ; run-fail lightweight_test_fail9.cpp ; run-fail lightweight_test_fail10.cpp ; run-fail lightweight_test_lt_fail.cpp ; run-fail lightweight_test_le_fail.cpp ; run-fail lightweight_test_gt_fail.cpp ; run-fail lightweight_test_ge_fail.cpp ; run is_same_test.cpp ; run typeinfo_test.cpp ; run typeinfo_test.cpp : : : off : typeinfo_test_no_rtti ; run iterator_test.cpp ; run detail_iterator_test.cpp ; run demangle_test.cpp : : : always_show_run_output ; run demangled_name_test.cpp : : : always_show_run_output ; run demangled_name_test.cpp : : : off always_show_run_output : demangled_name_test_no_rtti ; run scoped_enum.cpp ; compile-fail scoped_enum_compile_fail_conv_from_int.cpp ; compile-fail scoped_enum_compile_fail_conv_to_int.cpp ; run underlying_type.cpp ; run pointer_traits_to_address_test.cpp ; 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 ; run to_address_test.cpp ; use-project /boost/core/swap : ./swap ; build-project ./swap ;