# Copyright Hans Dembinski 2019 # Distributed under 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 find_package(PythonInterp) if (PYTHONINTERP_FOUND) # checks that b2 and cmake are in sync add_test(NAME runpy-${PROJECT_NAME}_check_build_system COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/check_build_system.py) # checks that all headers are included in odr test add_test(NAME runpy-${PROJECT_NAME}_check_odr_test COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/check_odr_test.py) endif() include(BoostTest OPTIONAL RESULT_VARIABLE HAVE_BOOST_TEST) if(NOT HAVE_BOOST_TEST) return() endif() set(BOOST_TEST_LINK_LIBRARIES Boost::histogram) # keep in sync with Jamfile, this should be automatized... boost_test(TYPE compile-fail SOURCES axis_category_fail0.cpp) boost_test(TYPE compile-fail SOURCES axis_category_fail1.cpp) boost_test(TYPE compile-fail SOURCES axis_category_fail2.cpp) boost_test(TYPE compile-fail SOURCES axis_integer_fail0.cpp) boost_test(TYPE compile-fail SOURCES axis_integer_fail1.cpp) boost_test(TYPE compile-fail SOURCES axis_integer_fail2.cpp) boost_test(TYPE compile-fail SOURCES axis_integer_fail3.cpp) boost_test(TYPE compile-fail SOURCES axis_integer_fail4.cpp) boost_test(TYPE compile-fail SOURCES axis_regular_fail0.cpp) boost_test(TYPE compile-fail SOURCES axis_regular_fail1.cpp) boost_test(TYPE compile-fail SOURCES axis_variable_fail0.cpp) boost_test(TYPE compile-fail SOURCES axis_variable_fail1.cpp) boost_test(TYPE compile-fail SOURCES make_histogram_fail0.cpp) boost_test(TYPE compile-fail SOURCES make_histogram_fail1.cpp) boost_test(TYPE compile-fail SOURCES histogram_fail0.cpp) boost_test(TYPE compile-fail SOURCES histogram_fail1.cpp) boost_test(TYPE compile-fail SOURCES histogram_fail2.cpp) boost_test(TYPE compile-fail SOURCES histogram_fail3.cpp) boost_test(TYPE compile-fail SOURCES histogram_fail4.cpp) set(BOOST_TEST_LINK_LIBRARIES Boost::histogram Boost::core) boost_test(TYPE run SOURCES accumulators_count_test.cpp) boost_test(TYPE run SOURCES accumulators_mean_test.cpp) boost_test(TYPE run SOURCES accumulators_sum_test.cpp) boost_test(TYPE run SOURCES accumulators_thread_safe_test.cpp) boost_test(TYPE run SOURCES accumulators_weighted_mean_test.cpp) boost_test(TYPE run SOURCES accumulators_weighted_sum_test.cpp) boost_test(TYPE run SOURCES algorithm_project_test.cpp) boost_test(TYPE run SOURCES algorithm_reduce_test.cpp) boost_test(TYPE run SOURCES algorithm_sum_test.cpp) boost_test(TYPE run SOURCES algorithm_empty_test.cpp) boost_test(TYPE run SOURCES axis_category_test.cpp) boost_test(TYPE run SOURCES axis_integer_test.cpp) boost_test(TYPE run SOURCES axis_option_test.cpp) boost_test(TYPE run SOURCES axis_regular_test.cpp) boost_test(TYPE run SOURCES axis_size.cpp) boost_test(TYPE run SOURCES axis_traits_test.cpp) boost_test(TYPE run SOURCES axis_variable_test.cpp) boost_test(TYPE run SOURCES axis_variant_test.cpp) boost_test(TYPE run SOURCES detail_accumulator_traits_test.cpp) boost_test(TYPE run SOURCES detail_argument_traits_test.cpp) boost_test(TYPE run SOURCES detail_args_type_test.cpp) boost_test(TYPE run SOURCES detail_axes_test.cpp) boost_test(TYPE run SOURCES detail_convert_integer_test.cpp) boost_test(TYPE run SOURCES detail_detect_test.cpp) boost_test(TYPE run SOURCES detail_limits_test.cpp) boost_test(TYPE run SOURCES detail_make_default_test.cpp) boost_test(TYPE run SOURCES detail_misc_test.cpp) boost_test(TYPE run SOURCES detail_large_int_test.cpp) boost_test(TYPE run SOURCES detail_iterator_adaptor_test.cpp) boost_test(TYPE run SOURCES detail_operators_test.cpp) boost_test(TYPE run SOURCES detail_relaxed_equal_test.cpp) boost_test(TYPE run SOURCES detail_replace_type_test.cpp) boost_test(TYPE run SOURCES detail_safe_comparison_test.cpp) boost_test(TYPE run SOURCES detail_static_if_test.cpp) boost_test(TYPE run SOURCES detail_tuple_slice_test.cpp) boost_test(TYPE run SOURCES histogram_custom_axis_test.cpp) boost_test(TYPE run SOURCES histogram_dynamic_test.cpp) boost_test(TYPE run SOURCES histogram_fill_test.cpp COMPILE_OPTIONS $<$:/bigobj>) boost_test(TYPE run SOURCES histogram_growing_test.cpp) boost_test(TYPE run SOURCES histogram_mixed_test.cpp) boost_test(TYPE run SOURCES histogram_operators_test.cpp) boost_test(TYPE run SOURCES histogram_ostream_test.cpp) boost_test(TYPE run SOURCES histogram_test.cpp) boost_test(TYPE run SOURCES indexed_test.cpp) boost_test(TYPE run SOURCES storage_adaptor_test.cpp) boost_test(TYPE run SOURCES unlimited_storage_test.cpp) boost_test(TYPE run SOURCES utility_test.cpp) find_package(Threads) if (Threads_FOUND) boost_test(TYPE run SOURCES histogram_threaded_test.cpp LINK_LIBRARIES Threads::Threads) boost_test(TYPE run SOURCES storage_adaptor_threaded_test.cpp LINK_LIBRARIES Threads::Threads) endif() ## No cmake support yet # boost_test(TYPE link SOURCES odr_main_test.cpp odr_test.cpp # LINK_LIBRARIES Boost::serialization) # boost_test(TYPE run SOURCES boost_accumulators_support_test.cpp # LINK_LIBRARIES Boost::accumulators) # boost_test(TYPE run SOURCES boost_range_support_test.cpp # LINK_LIBRARIES Boost::range) # boost_test(TYPE run SOURCES boost_units_support_test.cpp # LINK_LIBRARIES Boost::units) # boost_test(TYPE run SOURCES detail_array_wrapper_serialization_test.cpp LINK_LIBRARIES Boost::serialization) # boost_test(TYPE run SOURCES unlimited_storage_serialization_test.cpp LINK_LIBRARIES Boost::serialization) # boost_test(TYPE run SOURCES storage_adaptor_serialization_test.cpp LINK_LIBRARIES Boost::serialization) # boost_test(TYPE run SOURCES histogram_serialization_test.cpp LINK_LIBRARIES Boost::serialization) # boost_test(TYPE run SOURCES axis_variant_serialization_test.cpp # LINK_LIBRARIES Boost::serialization) # boost_test(TYPE run SOURCES accumulators_serialization_test.cpp # LINK_LIBRARIES Boost::serialization) boost_test(TYPE run SOURCES deduction_guides_test.cpp COMPILE_FEATURES cxx_std_17)