Files
histogram/benchmark/Jamfile
Hans Dembinski 2568a68f76 msvc fixes, simplification and bug-fixes of mp_int, more test coverage (#159)
* fixes broken msvc build
* smaller xml files for testing serialization
* fixing many warnings on msvc
* bug-fixes to mp_int regarding operators and new tests to check their behavior 
* don't expect iterable histogram::at to have size method
* build benchmarks in release mode
* test everything by default when b2 is run on project directory
* more test coverage
2019-02-18 10:04:27 +01:00

29 lines
686 B
Plaintext

# Copyright (c) 2018 Mateusz Loskot <mateusz@loskot.net>
# Copyright Klemens David Morgenstern, Hans P. Dembinski 2016-2017
#
# Use, modification and distribution is subject to 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
<include>$(BOOST_ROOT)
<include>.
<variant>release
;
alias run-speed-test :
[ run speed_boost.cpp ]
;
alias run-google-benchmarks :
[ run axis_index.cpp ]
[ run histogram_iteration.cpp ]
[ run histogram_parallel_filling.cpp ]
;
explicit run-speed-test ;
explicit run-google-benchmarks ;