]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/beast/test/beast/http/Jamfile
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / beast / test / beast / http / Jamfile
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
10 local 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
19 fields.cpp
20 file_body.cpp
21 message.cpp
22 parser.cpp
23 read.cpp
24 rfc7230.cpp
25 serializer.cpp
26 span_body.cpp
27 status.cpp
28 string_body.cpp
29 type_traits.cpp
30 vector_body.cpp
31 verb.cpp
32 write.cpp
33 ;
34
35 local RUN_TESTS ;
36
37 for local f in $(SOURCES)
38 {
39 RUN_TESTS += [ run $(f)
40 /boost/beast/test//lib-test
41 ] ;
42 }
43
44 alias run-tests : $(RUN_TESTS) ;
45
46 exe fat-tests :
47 $(SOURCES)
48 /boost/beast/test//lib-test
49 ;
50
51 explicit fat-tests ;
52
53 run $(SOURCES)
54 /boost/beast/test//lib-test
55 : : : : run-fat-tests ;
56
57 explicit run-fat-tests ;