]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/core/test/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / core / test / Jamfile.v2
CommitLineData
7c673cae
FG
1# Boost.Core Library test Jamfile
2#
b32b8144 3# Copyright (c) 2014, 2017 Peter Dimov
7c673cae
FG
4#
5# Distributed under the Boost Software License, Version 1.0.
6# See accompanying file LICENSE_1_0.txt or copy at
7# http://www.boost.org/LICENSE_1_0.txt
8
9import modules ;
10import testing ;
11
b32b8144
FG
12# quick test (for CI)
13run quick.cpp ;
14
15# full test suite
7c673cae
FG
16run addressof_test.cpp ;
17run addressof_test2.cpp ;
18run addressof_np_test.cpp ;
19run addressof_fn_test.cpp ;
b32b8144
FG
20compile addressof_constexpr_test.cpp ;
21compile-fail addressof_fail_rvalue.cpp ;
7c673cae
FG
22
23run checked_delete_test.cpp ;
24compile-fail checked_delete_fail.cpp ;
25compile-fail checked_delete_fail2.cpp ;
26
27compile ref_ct_test.cpp ;
28run ref_test.cpp ;
29run ref_ref_test.cpp ;
30run ref_fn_test.cpp ;
31compile-fail ref_rv_fail1.cpp ;
32compile-fail ref_rv_fail2.cpp ;
33compile-fail ref_rv_fail3.cpp ;
34compile-fail ref_rv_fail4.cpp ;
35compile-fail ref_rv_fail5.cpp ;
36compile-fail ref_implicit_fail.cpp ;
37compile-fail ref_implicit_fail2.cpp ;
b32b8144 38run ref_cv_test.cpp ;
7c673cae
FG
39
40run eif_constructors.cpp ;
41run eif_dummy_arg_disambiguation.cpp ;
42run eif_lazy.cpp ;
43run eif_lazy_test.cpp ;
44run eif_member_templates.cpp ;
45run eif_namespace_disambiguation.cpp ;
46run eif_no_disambiguation.cpp ;
47run eif_partial_specializations.cpp ;
48
49compile-fail noncopyable_compile_fail.cpp ;
50
51run explicit_operator_bool.cpp ;
52run explicit_operator_bool_noexcept.cpp ;
53compile-fail explicit_operator_bool_compile_fail_conv_int.cpp ;
54compile-fail explicit_operator_bool_compile_fail_conv_pvoid.cpp ;
55compile-fail explicit_operator_bool_compile_fail_delete.cpp ;
56compile-fail explicit_operator_bool_compile_fail_shift.cpp ;
57
58compile ignore_unused_test.cpp : <toolset>gcc-4.8:<cxxflags>"-Wunused-variable -Wunused-local-typedefs -Werror"
59 <toolset>gcc:<cxxflags>"-Wunused-variable -Werror"
60 <toolset>clang:<cxxflags>"-Wunused-variable -Werror"
61 <toolset>msvc:<cxxflags>"/we4100 /we4101" ;
62run sp_typeinfo_test.cpp ;
63run sp_typeinfo_test.cpp : : : <rtti>off : sp_typeinfo_test_no_rtti ;
64
65run visit_each_test.cpp ;
66
67run get_pointer_test.cpp ;
68
69run lightweight_test_test.cpp ;
70run lightweight_test_test.cpp : : : <exception-handling>off : lightweight_test_test_no_except ;
71
72run lightweight_test_test2.cpp ;
b32b8144
FG
73run lightweight_test_all_eq_test.cpp ;
74run lightweight_test_all_with_test.cpp ;
75run lightweight_test_all_with_fail.cpp ;
76run lightweight_test_lt_le_test.cpp ;
77run lightweight_test_gt_ge_test.cpp ;
78
79run lightweight_test_eq_nullptr.cpp ;
7c673cae
FG
80
81run-fail lightweight_test_fail.cpp ;
82run-fail lightweight_test_fail2.cpp ;
83run-fail lightweight_test_fail3.cpp ;
84run-fail lightweight_test_fail4.cpp ;
85run-fail lightweight_test_fail5.cpp ;
86run-fail lightweight_test_fail6.cpp ;
87run-fail lightweight_test_fail7.cpp ;
88run-fail lightweight_test_fail7.cpp : : : <rtti>off : lightweight_test_fail7_no_rtti ;
89run-fail lightweight_test_fail8.cpp ;
90run-fail lightweight_test_fail8.cpp : : : <rtti>off : lightweight_test_fail8_no_rtti ;
b32b8144
FG
91run-fail lightweight_test_fail9.cpp ;
92run-fail lightweight_test_fail10.cpp ;
93run-fail lightweight_test_lt_fail.cpp ;
94run-fail lightweight_test_le_fail.cpp ;
95run-fail lightweight_test_gt_fail.cpp ;
96run-fail lightweight_test_ge_fail.cpp ;
7c673cae
FG
97
98run is_same_test.cpp ;
99
100run typeinfo_test.cpp ;
101run typeinfo_test.cpp : : : <rtti>off : typeinfo_test_no_rtti ;
102
103run iterator_test.cpp ;
104run detail_iterator_test.cpp ;
105
106run demangle_test.cpp : : : <test-info>always_show_run_output ;
107
108run demangled_name_test.cpp : : : <test-info>always_show_run_output ;
109run demangled_name_test.cpp : : : <rtti>off <test-info>always_show_run_output : demangled_name_test_no_rtti ;
110
111run scoped_enum.cpp ;
112compile-fail scoped_enum_compile_fail_conv_from_int.cpp ;
113compile-fail scoped_enum_compile_fail_conv_to_int.cpp ;
114
115run underlying_type.cpp ;
116
b32b8144
FG
117run pointer_traits_to_address_test.cpp ;
118run pointer_traits_pointer_test.cpp ;
119run pointer_traits_element_type_test.cpp ;
120run pointer_traits_difference_type_test.cpp ;
121run pointer_traits_rebind_test.cpp ;
122run pointer_traits_pointer_to_test.cpp ;
123run to_address_test.cpp ;
124
7c673cae
FG
125use-project /boost/core/swap : ./swap ;
126build-project ./swap ;