]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/beast/test/beast/http/Jamfile
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / beast / test / beast / http / Jamfile
CommitLineData
b32b8144
FG
1#
2# Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
3#
4# Distributed under the Boost Software License, Version 1.0. (See accompanying
5# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6#
7# Official repository: https://github.com/boostorg/beast
8#
9
10local SOURCES =
11 basic_dynamic_body.cpp
12 basic_file_body.cpp
13 basic_parser.cpp
14 buffer_body.cpp
15 chunk_encode.cpp
16 dynamic_body.cpp
17 error.cpp
18 field.cpp
20effc67 19 field_compiles.cpp
b32b8144
FG
20 fields.cpp
21 file_body.cpp
22 message.cpp
23 parser.cpp
24 read.cpp
25 rfc7230.cpp
26 serializer.cpp
27 span_body.cpp
28 status.cpp
29 string_body.cpp
30 type_traits.cpp
31 vector_body.cpp
32 verb.cpp
33 write.cpp
34 ;
35
36local RUN_TESTS ;
37
38for local f in $(SOURCES)
39{
92f5a8d4
TL
40 RUN_TESTS += [ run $(f)
41 /boost/beast/test//lib-test
42 ] ;
b32b8144
FG
43}
44
45alias run-tests : $(RUN_TESTS) ;
46
92f5a8d4
TL
47exe fat-tests :
48 $(SOURCES)
49 /boost/beast/test//lib-test
50 ;
b32b8144
FG
51
52explicit fat-tests ;
92f5a8d4
TL
53
54run $(SOURCES)
55 /boost/beast/test//lib-test
56 : : : : run-fat-tests ;
57
58explicit run-fat-tests ;