1#  Boost.Bind Library test Jamfile
2#
3#  Copyright (c) 2003-2006, 2017 Peter Dimov
4#
5#  Distributed under the Boost Software License, Version 1.0. (See
6#  accompanying file LICENSE_1_0.txt or copy at
7#  http://www.boost.org/LICENSE_1_0.txt)
8
9# bring in rules for testing
10import testing ;
11
12# quick test (for CI)
13run quick.cpp ;
14
15# full test suite
16run bind_test.cpp ;
17run bind_dm_test.cpp ;
18run bind_eq_test.cpp ;
19run bind_const_test.cpp ;
20run bind_cv_test.cpp ;
21run bind_stateful_test.cpp ;
22run bind_dm2_test.cpp ;
23run bind_not_test.cpp ;
24run bind_rel_test.cpp ;
25run bind_function_test.cpp ;
26run bind_lookup_problem_test.cpp ;
27run bind_rv_sp_test.cpp ;
28compile bind_unary_addr.cpp ;
29run bind_dm3_test.cpp ;
30run bind_visit_test.cpp ;
31run bind_placeholder_test.cpp ;
32run bind_rvalue_test.cpp ;
33run bind_and_or_test.cpp ;
34run bind_void_test.cpp ;
35run bind_void_dm_test.cpp ;
36run bind_void_mf_test.cpp ;
37run mem_fn_test.cpp ;
38run mem_fn_void_test.cpp ;
39run mem_fn_derived_test.cpp ;
40run mem_fn_eq_test.cpp ;
41run mem_fn_dm_test.cpp ;
42run mem_fn_rv_test.cpp ;
43run ref_fn_test.cpp ;
44run bind_fnobj2_test.cpp ;
45run bind_fn2_test.cpp ;
46run bind_mf2_test.cpp ;
47run bind_eq2_test.cpp ;
48run mem_fn_ref_test.cpp ;
49run bind_ref_test.cpp ;
50run bind_eq3_test.cpp ;
51run protect_test.cpp ;
52run mem_fn_unary_addr_test.cpp ;
53run bind_function2_test.cpp ;
54run bind_fwd_test.cpp ;
55run bind_fwd2_test.cpp ;
56run bind_no_placeholders_test.cpp ;
57run placeholder_const_ref_test.cpp ;
58run bind_function_ap_test.cpp ;
59run bind_type_test.cpp ;
60run bind_unique_ptr_test.cpp ;
61run bind_nested_rv_test.cpp ;
62compile arg_copy_test.cpp ;
63compile-fail arg_copy_fail.cpp ;
64run placeholder_std_bind_test.cpp ;
65run bind_fastcall_test.cpp ;
66run bind_stdcall_test.cpp ;
67run bind_cdecl_mf_test.cpp ;
68run bind_fastcall_mf_test.cpp ;
69run bind_stdcall_mf_test.cpp ;
70run mem_fn_cdecl_test.cpp ;
71run mem_fn_fastcall_test.cpp ;
72run mem_fn_stdcall_test.cpp ;
73run bind_noexcept_test.cpp ;
74run bind_noexcept_mf_test.cpp ;
75