2006-11-07 02:19:13 +00:00
|
|
|
# Boost System Library test Jamfile
|
|
|
|
|
|
|
|
# Copyright Beman Dawes 2003, 2006
|
|
|
|
|
|
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
|
|
# See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
|
|
|
|
# See library home page at http://www.boost.org/libs/system
|
|
|
|
|
2017-06-13 20:12:21 +03:00
|
|
|
import testing ;
|
2013-12-02 13:54:25 -05:00
|
|
|
|
2006-11-07 02:19:13 +00:00
|
|
|
project
|
|
|
|
: requirements
|
|
|
|
<library>/boost/system//boost_system
|
2007-09-11 02:07:50 +00:00
|
|
|
<toolset>msvc:<asynch-exceptions>on
|
2006-11-07 02:19:13 +00:00
|
|
|
;
|
2010-07-06 10:47:30 +00:00
|
|
|
|
|
|
|
lib throw_test
|
|
|
|
: throw_test.cpp
|
|
|
|
: <link>shared:<define>BOOST_SYSTEM_DYN_LINK=1
|
2012-05-21 13:39:58 +00:00
|
|
|
<link>static:<define>BOOST_SYSTEM_STATIC_LINK=1
|
2010-07-06 10:47:30 +00:00
|
|
|
;
|
|
|
|
|
2006-11-07 02:19:13 +00:00
|
|
|
|
|
|
|
test-suite "system"
|
|
|
|
: [ run error_code_test.cpp
|
2007-09-14 02:00:25 +00:00
|
|
|
: # command line
|
|
|
|
: # input files
|
|
|
|
: # requirements
|
|
|
|
<link>static
|
2006-11-07 02:19:13 +00:00
|
|
|
]
|
|
|
|
[ run error_code_test.cpp
|
2010-07-06 10:47:30 +00:00
|
|
|
: : : <link>shared : error_code_test_shared
|
2006-11-07 02:19:13 +00:00
|
|
|
]
|
|
|
|
[ run error_code_user_test.cpp
|
2008-01-20 02:01:35 +00:00
|
|
|
: : : <link>static
|
2006-11-07 02:19:13 +00:00
|
|
|
]
|
|
|
|
[ run error_code_user_test.cpp
|
2010-07-06 10:47:30 +00:00
|
|
|
: : : <link>shared : error_code_user_test_shared
|
2006-11-07 02:19:13 +00:00
|
|
|
]
|
|
|
|
[ run system_error_test.cpp
|
2008-01-20 02:01:35 +00:00
|
|
|
: : : <link>static
|
2006-11-07 02:19:13 +00:00
|
|
|
]
|
|
|
|
[ run system_error_test.cpp
|
2010-07-06 10:47:30 +00:00
|
|
|
: : : <link>shared : system_error_test_shared
|
|
|
|
]
|
|
|
|
[ run dynamic_link_test.cpp throw_test
|
|
|
|
: : : <link>shared : throw_test_shared
|
2006-11-07 02:19:13 +00:00
|
|
|
]
|
2007-09-21 16:42:27 +00:00
|
|
|
[ run initialization_test.cpp
|
2010-07-06 10:47:30 +00:00
|
|
|
: : : <link>shared : initialization_test_shared
|
2007-09-21 16:42:27 +00:00
|
|
|
]
|
2007-09-09 14:59:10 +00:00
|
|
|
[ run header_only_test.cpp
|
2007-09-14 02:00:25 +00:00
|
|
|
: : : <link>static
|
2007-09-09 14:59:10 +00:00
|
|
|
]
|
2014-08-01 10:49:40 -04:00
|
|
|
[ run config_test.cpp
|
|
|
|
: : : <test-info>always_show_run_output
|
|
|
|
]
|
2017-05-20 14:33:54 +03:00
|
|
|
[ run std_interop_test.cpp
|
|
|
|
: : : <link>static
|
|
|
|
]
|
|
|
|
[ run std_interop_test.cpp
|
|
|
|
: : : <link>shared : std_interop_test_shared
|
|
|
|
]
|
2006-11-07 02:19:13 +00:00
|
|
|
;
|