Files
boost_beast/test/beast/Jamfile
T
Vinnie Falco 9d27f2659f Optimize for size on buffers_cat preconditions:
When BOOST_BEAST_TESTS is not defined, violations of
buffers_cat preconditions will assert instead of throwing
exceptions. This reduces the size of the emitted code
and improves performance.
2018-12-19 20:59:20 -08:00

42 lines
910 B
Plaintext

#
# Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
#
# 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)
#
# Official repository: https://github.com/boostorg/beast
#
alias run-tests :
[ compile core.cpp ]
[ compile http.cpp ]
[ compile version.cpp ]
[ compile websocket.cpp ]
[ compile zlib.cpp ]
core//run-tests
http//run-tests
websocket//run-tests
zlib//run-tests
experimental//run-tests
;
alias fat-tests :
core//fat-tests
http//fat-tests
websocket//fat-tests
zlib//fat-tests
experimental//fat-tests
;
explicit fat-tests ;
alias run-fat-tests :
core//run-fat-tests
http//run-fat-tests
websocket//run-fat-tests
zlib//run-fat-tests
experimental//run-fat-tests
;
explicit run-fat-tests ;