]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/assert/test/Jamfile.v2
update ceph source to reef 18.1.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
1e59de90
TL
17 <toolset>gcc-4.4.7:<cxxflags>-Wno-sign-compare
18 <toolset>gcc-4.4:<cxxflags>-Wno-sign-compare
19;
f67539c2 20
b32b8144 21run assert_test.cpp ;
92f5a8d4
TL
22run current_function_test.cpp
23 : : : <test-info>always_show_run_output ;
b32b8144
FG
24run verify_test.cpp ;
25run assert_is_void_test.cpp ;
26
27# expansion tests are in exp/ so that there is a backslash in the path on Windows
28run exp/assert_exp_test.cpp ;
29run exp/assert_msg_exp_test.cpp ;
30run exp/verify_exp_test.cpp ;
31run exp/verify_msg_exp_test.cpp ;
32run assert_test2.cpp ;
33run assert_msg_test2.cpp ;
34
35# quick test (for CI)
36run quick.cpp ;
92f5a8d4
TL
37
38run current_function_test2.cpp ;
f67539c2
TL
39
40run source_location_test.cpp ;
41run source_location_test2.cpp ;
42run source_location_test3.cpp ;
1e59de90
TL
43run source_location_test4.cpp ;
44run source_location_test5.cpp ;