mirror of
https://github.com/boostorg/histogram.git
synced 2026-01-30 07:52:11 +00:00
50 lines
1.6 KiB
Plaintext
50 lines
1.6 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 histogram_serialization_test.cpp /boost/serialization//boost_serialization/<link>static ]
|
|
[ run adaptive_storage_test.cpp ]
|
|
[ run array_storage_test.cpp ]
|
|
[ run axis_test.cpp ]
|
|
[ run detail_test.cpp ]
|
|
[ run histogram_dynamic_test.cpp ]
|
|
[ run histogram_mixed_test.cpp ]
|
|
[ run histogram_test.cpp ]
|
|
[ run index_mapper_test.cpp ]
|
|
[ run meta_test.cpp ]
|
|
[ link speed_cpp.cpp : : speed_test ]
|
|
[ run utility_test.cpp ]
|
|
[ run weight_counter_test.cpp ]
|
|
;
|
|
|
|
alias run-fail-tests :
|
|
[ run-fail histogram_dynamic_add_fail.cpp ]
|
|
[ run-fail histogram_dynamic_at_tuple_wrong_dimension_fail.cpp ]
|
|
[ run-fail histogram_dynamic_at_vector_wrong_dimension_fail.cpp ]
|
|
[ run-fail histogram_dynamic_at_wrong_dimension_fail.cpp ]
|
|
[ run-fail histogram_dynamic_reduce_wrong_order_fail.cpp ]
|
|
[ run-fail histogram_static_add_fail.cpp ]
|
|
[ run-fail histogram_static_at_vector_wrong_dimension_fail.cpp ]
|
|
;
|
|
|
|
alias run-speed-tests :
|
|
[ run speed_cpp.cpp ]
|
|
[ run speed_gsl.cpp ]
|
|
[ run speed_root.cpp ]
|
|
;
|
|
|
|
explicit run-speed-tests ;
|