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

46 lines
1.5 KiB
Plaintext

# Copyright (c) 2018 Mateusz Loskot <mateusz@loskot.net>
#
# 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)
test-suite minimal :
[ run getting_started_listing_01.cpp ]
[ run getting_started_listing_02.cpp ]
[ run getting_started_listing_03.cpp ]
[ run guide_axis_basic_demo.cpp ]
[ run guide_axis_circular.cpp ]
[ run guide_axis_growing.cpp ]
[ run guide_axis_with_labels.cpp ]
[ run guide_axis_with_transform.cpp ]
[ run guide_axis_with_uoflow_off.cpp ]
[ run guide_custom_2d_axis.cpp ]
[ run guide_custom_accumulators.cpp ]
[ run guide_custom_minimal_axis.cpp ]
[ run guide_custom_modified_axis.cpp ]
[ run guide_custom_storage.cpp ]
[ run guide_fill_accumulator.cpp ]
[ run guide_fill_histogram.cpp ]
[ run guide_fill_profile.cpp ]
[ run guide_histogram_operators.cpp ]
[ run guide_histogram_reduction.cpp ]
[ run guide_histogram_streaming.cpp ]
[ run guide_indexed_access.cpp ]
[ run guide_make_dynamic_histogram.cpp ]
[ run guide_make_static_histogram.cpp ]
[ run guide_parallel_filling.cpp ]
[ run guide_stdlib_algorithms.cpp ]
;
alias libserial : /boost/serialization//boost_serialization : <link>static ;
test-suite serial :
[ run guide_histogram_serialization.cpp libserial ]
;
test-suite all : minimal serial ;
explicit minimal ;
explicit libserial ;
explicit serial ;