mirror of
https://github.com/boostorg/histogram.git
synced 2025-05-11 13:14:06 +00:00
58 lines
2.0 KiB
Plaintext
58 lines
2.0 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 ;
|
|
import feature ;
|
|
|
|
project
|
|
: requirements
|
|
<include>$(BOOST_ROOT)
|
|
<include>.
|
|
;
|
|
|
|
path-constant THIS_PATH : . ;
|
|
|
|
alias run-tests :
|
|
[ run algorithm_project_test.cpp ]
|
|
[ run algorithm_reduce_test.cpp ]
|
|
[ run algorithm_sum_test.cpp ]
|
|
[ run axis_category_test.cpp ]
|
|
[ run axis_integer_test.cpp ]
|
|
[ run axis_option_test.cpp ]
|
|
[ run axis_regular_test.cpp ]
|
|
[ run axis_size.cpp ]
|
|
[ run axis_traits_test.cpp ]
|
|
[ run axis_variable_test.cpp ]
|
|
[ run axis_variant_test.cpp ]
|
|
# [ run boost_accumulators_support_test.cpp ] # disabled until boost.parameter usage is fixed
|
|
[ run boost_range_support_test.cpp ]
|
|
[ run boost_units_support_test.cpp ]
|
|
# [ run deduction_guides_test.cpp ] # disabled until conditional compilation works
|
|
[ run detail_test.cpp ]
|
|
[ run histogram_dynamic_test.cpp ]
|
|
[ run histogram_growing_test.cpp ]
|
|
[ run histogram_mixed_test.cpp ]
|
|
[ run histogram_operators_test.cpp ]
|
|
[ run histogram_serialization_test.cpp
|
|
/boost/serialization//boost_serialization/<link>static : : :
|
|
<define>STATIC_XML=\\\"$(THIS_PATH)/histogram_serialization_test_static.xml\\\"
|
|
<define>DYNAMIC_XML=\\\"$(THIS_PATH)/histogram_serialization_test_dynamic.xml\\\"
|
|
]
|
|
[ run histogram_test.cpp ]
|
|
[ run indexed_test.cpp ]
|
|
[ run internal_accumulators_test.cpp ]
|
|
[ run linearize_test.cpp ]
|
|
[ run meta_test.cpp ]
|
|
[ run storage_adaptor_serialization_test.cpp
|
|
/boost/serialization//boost_serialization/<link>static ]
|
|
[ run storage_adaptor_test.cpp ]
|
|
[ run unlimited_storage_serialization_test.cpp
|
|
/boost/serialization//boost_serialization/<link>static ]
|
|
[ run unlimited_storage_test.cpp ]
|
|
[ run utility_test.cpp ]
|
|
;
|