2
0
mirror of https://github.com/boostorg/leaf.git synced 2026-01-30 07:52:13 +00:00
Files
leaf/test/Jamfile.v2

55 lines
1.6 KiB
Plaintext

# Copyright (c) 2018 Emil Dotchevski
# Copyright (c) 2018 Second Spectrum, Inc.
# 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 testing ;
project
: requirements
<toolset>gcc:<cxxflags>"-std=c++11" <linkflags>"-pthread"
<toolset>darwin:<cxxflags>"-std=c++11 -Wno-unused-variable -Wno-non-virtual-dtor -Wno-dangling-else"
<toolset>msvc:<cxxflags>"-wd 4267 -wd 4996"
<include>../../..
;
run _hpp_all_test.cpp ;
run _hpp_common_test.cpp ;
run _hpp_error_capture_test.cpp ;
run _hpp_error_test.cpp ;
run _hpp_exception_capture_test.cpp ;
run _hpp_exception_test.cpp ;
run _hpp_expect_test.cpp ;
run _hpp_preload_test.cpp ;
run _hpp_result_test.cpp ;
run basic_test.cpp ;
run defer_test.0.cpp ;
run defer_test.1.cpp ;
run defer_test.2.cpp ;
run defer_test.3.cpp ;
run defer_test.4.cpp ;
run diagnostic_print_test.cpp ;
run error_capture_test.cpp ;
run error_test.cpp ;
run exception_capture_test.cpp : : : <threading>multi ;
run exception_test.cpp ;
run expect_test.1.cpp ;
run expect_test.2.cpp ;
run expect_test.3.cpp ;
run multiple_errors_test.cpp ;
run optional_test.cpp ;
run preload_test.1.cpp ;
run preload_test.2.cpp ;
run preload_test.3.cpp ;
run preload_test.4.cpp ;
run print_test.cpp ;
run result_capture_test.cpp : : : <threading>multi ;
run result_test.cpp ;
run result_void_capture_test.cpp : : : <threading>multi ;
compile ../example/print_file_result.cpp ;
compile ../example/print_file_eh.cpp ;
compile ../example/capture_result.cpp ;
compile ../example/capture_eh.cpp ;