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 8import testing ; 9 10project 11 : requirements 12 <link>static 13 <exception-handling>on 14 ; 15 16#to_string 17 18run is_output_streamable_test.cpp ; 19run has_to_string_test.cpp ; 20run to_string_test.cpp ; 21run to_string_stub_test.cpp ; 22compile-fail to_string_fail.cpp ; 23 24#exception 25 26run 1-throw_exception_test.cpp ; 27run 2-throw_exception_no_exceptions_test.cpp ; 28run 3-throw_exception_no_integration_test.cpp ; 29run 4-throw_exception_no_both_test.cpp ; 30run cloning_test.cpp ; 31run copy_exception_test.cpp ../../thread/src/tss_null.cpp /boost//thread : : : <threading>multi ; 32run unknown_exception_test.cpp ; 33run exception_test.cpp ; 34run enable_error_info_test.cpp helper1.cpp ; 35run throw_exception_test.cpp helper2.cpp ; 36run errno_test.cpp ; 37run error_info_basic_test.cpp ; 38run error_info_lv_test.cpp ; 39run error_info_lv_const_test.cpp ; 40run error_info_rv_test.cpp ; 41run error_info_rv_const_test.cpp ; 42run diagnostic_information_test.cpp ; 43run refcount_ptr_test.cpp ; 44run current_exception_cast_test.cpp ; 45run no_exceptions_test.cpp : : : <exception-handling>off ; 46run errinfos_test.cpp ; 47run 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 ; 48run exception_ptr_test.cpp ../../thread/src/tss_null.cpp /boost//thread : : : <threading>multi ; 49 50compile-fail exception_fail.cpp ; 51compile-fail throw_exception_fail.cpp ; 52compile-fail error_info_const_fail.cpp ; 53 54#headers 55 56compile exception_ptr_hpp_test.cpp ; 57compile diagnostic_information_hpp_test.cpp ; 58compile error_info_hpp_test.cpp ; 59compile get_error_info_hpp_test.cpp ; 60compile info_hpp_test.cpp ; 61compile info_tuple_hpp_test.cpp ; 62compile to_string_hpp_test.cpp ; 63compile to_string_stub_hpp_test.cpp ; 64compile all_hpp_test.cpp ; 65compile current_exception_cast_hpp_test.cpp ; 66compile errinfo_api_function_hpp_test.cpp ; 67compile errinfo_at_line_hpp_test.cpp ; 68compile errinfo_errno_hpp_test.cpp ; 69compile errinfo_file_handle_hpp_test.cpp ; 70compile errinfo_file_name_hpp_test.cpp ; 71compile errinfo_file_open_mode_hpp_test.cpp ; 72compile errinfo_nested_exception_hpp_test.cpp ; 73compile errinfo_type_info_name_hpp_test.cpp ; 74 75compile bug_11874_test.cpp ; 76