]> git.proxmox.com Git - ceph.git/blob - ceph/src/Beast/test/Jamfile
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / Beast / test / Jamfile
1 #
2 # Copyright (c) 2013-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
8 import os ;
9
10 compile config.cpp : : ;
11 compile core.cpp : : ;
12 compile http.cpp : : ;
13 compile version.cpp : : ;
14 compile websocket.cpp : : ;
15 compile zlib.cpp : : ;
16
17 unit-test core-tests :
18 ../extras/beast/unit_test/main.cpp
19 core/async_completion.cpp
20 core/bind_handler.cpp
21 core/buffer_cat.cpp
22 core/buffer_concepts.cpp
23 core/buffers_adapter.cpp
24 core/clamp.cpp
25 core/consuming_buffers.cpp
26 core/dynabuf_readstream.cpp
27 core/error.cpp
28 core/flat_streambuf.cpp
29 core/handler_alloc.cpp
30 core/handler_concepts.cpp
31 core/handler_ptr.cpp
32 core/placeholders.cpp
33 core/prepare_buffer.cpp
34 core/prepare_buffers.cpp
35 core/static_streambuf.cpp
36 core/static_string.cpp
37 core/stream_concepts.cpp
38 core/streambuf.cpp
39 core/to_string.cpp
40 core/write_dynabuf.cpp
41 core/base64.cpp
42 core/empty_base_optimization.cpp
43 core/get_lowest_layer.cpp
44 core/is_call_possible.cpp
45 core/sha1.cpp
46 ;
47
48 unit-test http-tests :
49 ../extras/beast/unit_test/main.cpp
50 http/basic_dynabuf_body.cpp
51 http/basic_fields.cpp
52 http/basic_parser.cpp
53 http/concepts.cpp
54 http/design.cpp
55 http/error.cpp
56 http/fields.cpp
57 http/header_parser.cpp
58 http/message.cpp
59 http/message_parser.cpp
60 http/read.cpp
61 http/reason.cpp
62 http/rfc7230.cpp
63 http/streambuf_body.cpp
64 http/string_body.cpp
65 http/write.cpp
66 http/chunk_encode.cpp
67 ;
68
69 unit-test bench-tests :
70 ../extras/beast/unit_test/main.cpp
71 http/nodejs_parser.cpp
72 http/parser_bench.cpp
73 ;
74
75 unit-test websocket-tests :
76 ../extras/beast/unit_test/main.cpp
77 websocket/error.cpp
78 websocket/option.cpp
79 websocket/rfc6455.cpp
80 websocket/stream.cpp
81 websocket/teardown.cpp
82 websocket/frame.cpp
83 websocket/mask.cpp
84 websocket/utf8_checker.cpp
85 ;
86
87 unit-test zlib-tests :
88 ../extras/beast/unit_test/main.cpp
89 zlib/zlib-1.2.8/adler32.c
90 zlib/zlib-1.2.8/compress.c
91 zlib/zlib-1.2.8/crc32.c
92 zlib/zlib-1.2.8/deflate.c
93 zlib/zlib-1.2.8/infback.c
94 zlib/zlib-1.2.8/inffast.c
95 zlib/zlib-1.2.8/inflate.c
96 zlib/zlib-1.2.8/inftrees.c
97 zlib/zlib-1.2.8/trees.c
98 zlib/zlib-1.2.8/uncompr.c
99 zlib/zlib-1.2.8/zutil.c
100 zlib/deflate_stream.cpp
101 zlib/error.cpp
102 zlib/inflate_stream.cpp
103 ;