1# Boost.Assert Library test Jamfile 2# 3# Copyright (c) 2014, 2017, 2019 Peter Dimov 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 9import testing ; 10 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 19run assert_test.cpp ; 20run current_function_test.cpp 21 : : : <test-info>always_show_run_output ; 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 ; 35 36run current_function_test2.cpp ; 37 38run source_location_test.cpp ; 39run source_location_test2.cpp ; 40run source_location_test3.cpp ; 41