diff options
Diffstat (limited to 'src/boost/libs/beast/test/beast/Jamfile')
-rw-r--r-- | src/boost/libs/beast/test/beast/Jamfile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/boost/libs/beast/test/beast/Jamfile b/src/boost/libs/beast/test/beast/Jamfile new file mode 100644 index 00000000..6cb681b7 --- /dev/null +++ b/src/boost/libs/beast/test/beast/Jamfile @@ -0,0 +1,45 @@ +# +# 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 ssl.cpp ] + [ compile version.cpp ] + [ compile websocket.cpp ] + [ compile zlib.cpp ] + _experimental//run-tests + core//run-tests + http//run-tests + ssl//run-tests + websocket//run-tests + zlib//run-tests + ; + +alias fat-tests : + _experimental//fat-tests + core//fat-tests + http//fat-tests + ssl//fat-tests + websocket//fat-tests + zlib//fat-tests + ; + +explicit fat-tests ; + +alias run-fat-tests : + _experimental//run-fat-tests + core//run-fat-tests + http//run-fat-tests + ssl//run-fat-tests + websocket//run-fat-tests + zlib//run-fat-tests + ; + +explicit run-fat-tests ; |