Imported Upstream version 1.57.0
[platform/upstream/boost.git] / 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_test.cpp ;
38 run diagnostic_information_test.cpp ;
39 run refcount_ptr_test.cpp ;
40 run current_exception_cast_test.cpp ;
41 run no_exceptions_test.cpp : : : <exception-handling>off ;
42 run errinfos_test.cpp ;
43 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 ;
44 run exception_ptr_test.cpp ../../thread/src/tss_null.cpp /boost//thread : : : <threading>multi ;
45 run N3757_test.cpp ;
46
47 compile-fail exception_fail.cpp ;
48 compile-fail throw_exception_fail.cpp ;
49 compile-fail error_info_const_fail.cpp ;
50
51 #headers
52
53 compile exception_ptr_hpp_test.cpp ;
54 compile diagnostic_information_hpp_test.cpp ;
55 compile error_info_hpp_test.cpp ;
56 compile get_error_info_hpp_test.cpp ;
57 compile info_hpp_test.cpp ;
58 compile info_tuple_hpp_test.cpp ;
59 compile to_string_hpp_test.cpp ;
60 compile to_string_stub_hpp_test.cpp ;
61 compile all_hpp_test.cpp ;
62 compile current_exception_cast_hpp_test.cpp ;
63 compile errinfo_api_function_hpp_test.cpp ;
64 compile errinfo_at_line_hpp_test.cpp ;
65 compile errinfo_errno_hpp_test.cpp ;
66 compile errinfo_file_handle_hpp_test.cpp ;
67 compile errinfo_file_name_hpp_test.cpp ;
68 compile errinfo_file_open_mode_hpp_test.cpp ;
69 compile errinfo_nested_exception_hpp_test.cpp ;
70 compile errinfo_type_info_name_hpp_test.cpp ;