mirror of
https://github.com/boostorg/histogram.git
synced 2026-02-12 12:12:12 +00:00
49 lines
1.5 KiB
Plaintext
49 lines
1.5 KiB
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 histogram-test
|
|
: requirements
|
|
<include>$(BOOST_ROOT)
|
|
<include>.
|
|
;
|
|
|
|
alias run-tests :
|
|
[ run adaptive_storage_serialization_test.cpp /boost/serialization//boost_serialization/<link>static ]
|
|
[ run adaptive_storage_test.cpp ]
|
|
[ run axis_regular_test.cpp ]
|
|
[ run axis_circular_test.cpp ]
|
|
[ run axis_variable_test.cpp ]
|
|
[ run axis_integer_test.cpp ]
|
|
[ run axis_category_test.cpp ]
|
|
[ run axis_variant_test.cpp ]
|
|
[ run detail_test.cpp ]
|
|
[ run histogram_dynamic_test.cpp ]
|
|
[ run histogram_mixed_test.cpp ]
|
|
[ run histogram_serialization_test.cpp /boost/serialization//boost_serialization/<link>static ]
|
|
[ run histogram_test.cpp ]
|
|
[ run meta_test.cpp ]
|
|
[ run storage_adaptor_test.cpp ]
|
|
[ run storage_adaptor_serialization_test.cpp /boost/serialization//boost_serialization/<link>static ]
|
|
[ run utility_test.cpp ]
|
|
[ run weight_counter_test.cpp ]
|
|
;
|
|
|
|
alias run-fail-tests :
|
|
[ run-fail histogram_dynamic_reduce_wrong_order_fail.cpp ]
|
|
;
|
|
|
|
alias run-speed-tests :
|
|
[ run speed_cpp.cpp ]
|
|
[ run speed_gsl.cpp ]
|
|
[ run speed_root.cpp ]
|
|
;
|
|
|
|
explicit run-fail-tests ;
|
|
explicit run-speed-tests ;
|