2008-03-04 01:41:17 +00:00
|
|
|
# Boost Exception Library test Jamfile
|
|
|
|
#
|
2009-04-07 03:02:15 +00:00
|
|
|
# Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
|
2008-03-04 01:41:17 +00:00
|
|
|
#
|
|
|
|
# Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
|
|
|
import testing ;
|
|
|
|
|
2010-09-01 07:59:35 +00:00
|
|
|
project
|
|
|
|
: requirements
|
2010-10-05 15:04:50 +00:00
|
|
|
<link>static
|
2010-09-01 07:59:35 +00:00
|
|
|
<exception-handling>on
|
|
|
|
<source>/boost//exception
|
2010-09-03 02:03:15 +00:00
|
|
|
<define>BOOST_ENABLE_NON_INTRUSIVE_EXCEPTION_PTR
|
2010-09-01 07:59:35 +00:00
|
|
|
;
|
2008-06-25 23:27:56 +00:00
|
|
|
|
2008-04-11 03:51:06 +00:00
|
|
|
#to_string
|
2008-06-25 23:27:56 +00:00
|
|
|
|
2008-04-11 03:51:06 +00:00
|
|
|
run is_output_streamable_test.cpp ;
|
2008-04-11 18:34:46 +00:00
|
|
|
run has_to_string_test.cpp ;
|
2008-04-11 03:51:06 +00:00
|
|
|
run to_string_test.cpp ;
|
|
|
|
run to_string_stub_test.cpp ;
|
|
|
|
compile-fail to_string_fail.cpp ;
|
|
|
|
|
|
|
|
#exception
|
2008-06-25 23:27:56 +00:00
|
|
|
|
2008-09-11 18:15:25 +00:00
|
|
|
run 1-throw_exception_test.cpp ;
|
|
|
|
run 2-throw_exception_no_exceptions_test.cpp ;
|
|
|
|
run 3-throw_exception_no_integration_test.cpp ;
|
|
|
|
run 4-throw_exception_no_both_test.cpp ;
|
2008-03-04 01:41:17 +00:00
|
|
|
run cloning_test.cpp ;
|
2010-01-30 05:26:43 +00:00
|
|
|
run copy_exception_test.cpp /boost//thread : : : <threading>multi ;
|
2008-03-04 01:41:17 +00:00
|
|
|
run unknown_exception_test.cpp ;
|
|
|
|
run exception_test.cpp ;
|
|
|
|
run enable_error_info_test.cpp helper1.cpp ;
|
|
|
|
run throw_exception_test.cpp helper2.cpp ;
|
|
|
|
run errno_test.cpp ;
|
|
|
|
run error_info_test.cpp ;
|
2008-06-25 23:27:56 +00:00
|
|
|
run diagnostic_information_test.cpp ;
|
2008-08-31 01:39:00 +00:00
|
|
|
run refcount_ptr_test.cpp ;
|
2009-04-06 23:15:42 +00:00
|
|
|
run current_exception_cast_test.cpp ;
|
|
|
|
run no_exceptions_test.cpp : : : <exception-handling>off ;
|
2009-07-08 23:44:28 +00:00
|
|
|
run errinfos_test.cpp ;
|
2010-09-01 07:59:35 +00:00
|
|
|
run exception_ptr_test.cpp /boost//thread : : : <threading>multi ;
|
2010-09-01 06:05:11 +00:00
|
|
|
|
2008-03-04 01:41:17 +00:00
|
|
|
compile-fail exception_fail.cpp ;
|
2008-05-02 20:40:39 +00:00
|
|
|
compile-fail throw_exception_fail.cpp ;
|
2009-08-23 22:34:19 +00:00
|
|
|
compile-fail error_info_const_fail.cpp ;
|
2008-04-15 21:13:24 +00:00
|
|
|
|
|
|
|
#headers
|
2008-06-25 23:27:56 +00:00
|
|
|
|
|
|
|
compile exception_ptr_hpp_test.cpp ;
|
|
|
|
compile diagnostic_information_hpp_test.cpp ;
|
2008-04-15 21:13:24 +00:00
|
|
|
compile error_info_hpp_test.cpp ;
|
2008-08-28 23:49:55 +00:00
|
|
|
compile get_error_info_hpp_test.cpp ;
|
2008-04-15 21:13:24 +00:00
|
|
|
compile info_hpp_test.cpp ;
|
|
|
|
compile info_tuple_hpp_test.cpp ;
|
|
|
|
compile to_string_hpp_test.cpp ;
|
|
|
|
compile to_string_stub_hpp_test.cpp ;
|
2009-07-08 23:44:28 +00:00
|
|
|
compile all_hpp_test.cpp ;
|
2009-04-06 23:15:42 +00:00
|
|
|
compile current_exception_cast_hpp_test.cpp ;
|
2009-07-08 23:44:28 +00:00
|
|
|
compile errinfo_api_function_hpp_test.cpp ;
|
|
|
|
compile errinfo_at_line_hpp_test.cpp ;
|
|
|
|
compile errinfo_errno_hpp_test.cpp ;
|
|
|
|
compile errinfo_file_handle_hpp_test.cpp ;
|
|
|
|
compile errinfo_file_name_hpp_test.cpp ;
|
|
|
|
compile errinfo_file_open_mode_hpp_test.cpp ;
|
2009-10-13 01:47:22 +00:00
|
|
|
compile errinfo_nested_exception_hpp_test.cpp ;
|
2009-07-08 23:44:28 +00:00
|
|
|
compile errinfo_type_info_name_hpp_test.cpp ;
|