]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/assert/test/Jamfile.v2
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / assert / test / Jamfile.v2
CommitLineData
7c673cae
FG
1# Boost.Assert Library test Jamfile
2#
f67539c2 3# Copyright (c) 2014, 2017, 2019 Peter Dimov
7c673cae
FG
4#
5# Distributed under the Boost Software License, Version 1.0.
6# See accompanying file LICENSE_1_0.txt or copy at
7# http://www.boost.org/LICENSE_1_0.txt
8
7c673cae
FG
9import testing ;
10
f67539c2
TL
11project : requirements
12 <warnings>extra
13 <toolset>msvc:<warnings-as-errors>on
14 <toolset>clang:<warnings-as-errors>on
15 <toolset>gcc:<warnings-as-errors>on
16 <toolset>gcc:<cxxflags>-Wshadow
17 <toolset>gcc-4.4.7:<cxxflags>-Wno-sign-compare ;
18
b32b8144 19run assert_test.cpp ;
92f5a8d4
TL
20run current_function_test.cpp
21 : : : <test-info>always_show_run_output ;
b32b8144
FG
22run verify_test.cpp ;
23run assert_is_void_test.cpp ;
24
25# expansion tests are in exp/ so that there is a backslash in the path on Windows
26run exp/assert_exp_test.cpp ;
27run exp/assert_msg_exp_test.cpp ;
28run exp/verify_exp_test.cpp ;
29run exp/verify_msg_exp_test.cpp ;
30run assert_test2.cpp ;
31run assert_msg_test2.cpp ;
32
33# quick test (for CI)
34run quick.cpp ;
92f5a8d4
TL
35
36run current_function_test2.cpp ;
f67539c2
TL
37
38run source_location_test.cpp ;
39run source_location_test2.cpp ;
40run source_location_test3.cpp ;