]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/exception/test/Jamfile.v2
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / exception / test / Jamfile.v2
1 # Boost Exception Library test Jamfile
2 #
3 # Copyright (c) 2006-2013 Emil Dotchevski and Reverge Studios, Inc.
4 #
5 # Distributed under the Boost Software License, Version 1.0. (See accompanying
6 # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7
8 import testing ;
9
10 project
11 : requirements
12 <link>static
13 <exception-handling>on
14 ;
15
16 #to_string
17
18 run is_output_streamable_test.cpp ;
19 run has_to_string_test.cpp ;
20 run to_string_test.cpp ;
21 run to_string_stub_test.cpp ;
22 compile-fail to_string_fail.cpp ;
23
24 #exception
25
26 run 1-throw_exception_test.cpp ;
27 run 2-throw_exception_no_exceptions_test.cpp ;
28 run 3-throw_exception_no_integration_test.cpp ;
29 run 4-throw_exception_no_both_test.cpp ;
30 run cloning_test.cpp ;
31 run copy_exception_test.cpp ../../thread/src/tss_null.cpp /boost//thread : : : <threading>multi ;
32 run unknown_exception_test.cpp ;
33 run exception_test.cpp ;
34 run enable_error_info_test.cpp helper1.cpp ;
35 run throw_exception_test.cpp helper2.cpp ;
36 run errno_test.cpp ;
37 run error_info_basic_test.cpp ;
38 run error_info_lv_test.cpp ;
39 run error_info_lv_const_test.cpp ;
40 run error_info_rv_test.cpp ;
41 run error_info_rv_const_test.cpp ;
42 run diagnostic_information_test.cpp ;
43 run refcount_ptr_test.cpp ;
44 run current_exception_cast_test.cpp ;
45 run no_exceptions_test.cpp : : : <exception-handling>off ;
46 run errinfos_test.cpp ;
47 run exception_ptr_test.cpp/<define>BOOST_ENABLE_NON_INTRUSIVE_EXCEPTION_PTR ../../thread/src/tss_null.cpp /boost/exception /boost//thread : : : <threading>multi : non_intrusive_exception_ptr_test ;
48 run exception_ptr_test.cpp ../../thread/src/tss_null.cpp /boost//thread : : : <threading>multi ;
49
50 compile-fail exception_fail.cpp ;
51 compile-fail throw_exception_fail.cpp ;
52 compile-fail error_info_const_fail.cpp ;
53
54 #headers
55
56 compile exception_ptr_hpp_test.cpp ;
57 compile diagnostic_information_hpp_test.cpp ;
58 compile error_info_hpp_test.cpp ;
59 compile get_error_info_hpp_test.cpp ;
60 compile info_hpp_test.cpp ;
61 compile info_tuple_hpp_test.cpp ;
62 compile to_string_hpp_test.cpp ;
63 compile to_string_stub_hpp_test.cpp ;
64 compile all_hpp_test.cpp ;
65 compile current_exception_cast_hpp_test.cpp ;
66 compile errinfo_api_function_hpp_test.cpp ;
67 compile errinfo_at_line_hpp_test.cpp ;
68 compile errinfo_errno_hpp_test.cpp ;
69 compile errinfo_file_handle_hpp_test.cpp ;
70 compile errinfo_file_name_hpp_test.cpp ;
71 compile errinfo_file_open_mode_hpp_test.cpp ;
72 compile errinfo_nested_exception_hpp_test.cpp ;
73 compile errinfo_type_info_name_hpp_test.cpp ;
74
75 compile bug_11874_test.cpp ;