]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/beast/test/beast/core/Jamfile
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / beast / test / beast / core / 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 bind_handler.cpp
12 buffered_read_stream.cpp
13 buffers_adapter.cpp
14 buffers_cat.cpp
15 buffers_prefix.cpp
16 buffers_suffix.cpp
17 buffers_to_string.cpp
18 error.cpp
19 file.cpp
20 file_posix.cpp
21 file_stdio.cpp
22 file_win32.cpp
23 flat_buffer.cpp
24 flat_static_buffer.cpp
25 handler_ptr.cpp
26 multi_buffer.cpp
27 ostream.cpp
28 read_size.cpp
29 span.cpp
30 static_buffer.cpp
31 static_string.cpp
32 string.cpp
33 string_param.cpp
34 type_traits.cpp
35 detail/base64.cpp
36 detail/clamp.cpp
37 detail/empty_base_optimization.cpp
38 detail/sha1.cpp
39 detail/variant.cpp
40 detail/varint.cpp
41 ;
42
43 local RUN_TESTS ;
44
45 for local f in $(SOURCES)
46 {
47 RUN_TESTS += [ run $(f) $(TEST_MAIN) ] ;
48 }
49
50 alias run-tests : $(RUN_TESTS) ;
51
52 exe fat-tests : $(TEST_MAIN) $(SOURCES) ;
53
54 explicit fat-tests ;