Files
beast/test/Jamfile
T

87 lines
2.0 KiB
Plaintext
Raw Normal View History

2016-04-01 11:46:32 -04:00
#
# Copyright (c) 2013-2016 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)
#
import os ;
2016-05-07 14:57:15 -04:00
compile core.cpp : : ;
compile http.cpp : : ;
compile version.cpp : : ;
compile websocket.cpp : : ;
2016-04-25 05:27:34 -04:00
unit-test core-tests :
2016-05-07 07:08:21 -04:00
../extras/beast/unit_test/main.cpp
2016-05-07 14:57:15 -04:00
core/async_completion.cpp
core/basic_streambuf.cpp
core/bind_handler.cpp
core/buffer_cat.cpp
core/buffer_concepts.cpp
core/buffers_adapter.cpp
core/consuming_buffers.cpp
core/dynabuf_readstream.cpp
2016-05-07 14:57:15 -04:00
core/error.cpp
core/handler_alloc.cpp
core/handler_concepts.cpp
core/placeholders.cpp
core/prepare_buffers.cpp
core/static_streambuf.cpp
core/static_string.cpp
core/stream_concepts.cpp
core/streambuf.cpp
core/to_string.cpp
core/write_dynabuf.cpp
2016-09-02 10:09:45 -04:00
core/base64.cpp
core/empty_base_optimization.cpp
core/get_lowest_layer.cpp
core/sha1.cpp
2016-04-22 14:59:53 -04:00
;
2016-04-25 05:27:34 -04:00
unit-test http-tests :
2016-05-07 07:08:21 -04:00
../extras/beast/unit_test/main.cpp
http/basic_dynabuf_body.cpp
2016-04-20 10:15:02 -04:00
http/basic_headers.cpp
http/basic_parser_v1.cpp
http/body_type.cpp
2016-05-18 12:30:15 -04:00
http/concepts.cpp
2016-04-20 10:15:02 -04:00
http/empty_body.cpp
http/headers.cpp
http/message.cpp
2016-10-09 20:27:24 -04:00
http/parse.cpp
2016-04-25 05:27:34 -04:00
http/parse_error.cpp
http/parser_v1.cpp
2016-04-20 10:15:02 -04:00
http/read.cpp
http/reason.cpp
http/resume_context.cpp
2016-04-25 05:27:34 -04:00
http/rfc7230.cpp
2016-04-20 10:15:02 -04:00
http/streambuf_body.cpp
http/string_body.cpp
http/write.cpp
2016-09-02 10:09:45 -04:00
http/chunk_encode.cpp
2016-04-20 10:15:02 -04:00
;
2016-04-27 14:58:07 +07:00
unit-test bench-tests :
2016-05-07 07:08:21 -04:00
../extras/beast/unit_test/main.cpp
2016-04-25 05:27:34 -04:00
http/nodejs_parser.cpp
http/parser_bench.cpp
;
2016-04-30 13:00:33 -04:00
unit-test websocket-tests :
2016-05-07 07:08:21 -04:00
../extras/beast/unit_test/main.cpp
2016-04-30 13:00:33 -04:00
websocket/error.cpp
websocket/option.cpp
websocket/rfc6455.cpp
websocket/stream.cpp
websocket/teardown.cpp
2016-09-02 10:09:45 -04:00
websocket/frame.cpp
websocket/mask.cpp
websocket/stream_base.cpp
websocket/utf8_checker.cpp
2016-04-30 13:00:33 -04:00
;
exe websocket-echo :
websocket/websocket_echo.cpp
;