Files
histogram/test/Jamfile.v2
2016-06-18 18:59:38 +02:00

31 lines
1.0 KiB
Plaintext

# Copyright Klemens David Morgenstern 2016. 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)
#use-project /boost/histogram : ../build ;
project
: requirements
<target-os>windows:<define>WIN32_LEAN_AND_MEAN
<target-os>linux:<linkflags>-lpthread
;
import testing ;
import python ;
import os ;
test-suite ts :
[ compile check/sizeof.cpp ]
[ compile serialization.cpp ]
#[ compile check/speed_vs_root.cpp ] //not in yet, cause it needs an external library
[ run axis_test.cpp /boost//histogram /boost//test_exec_monitor : <define>BOOST_TEST_DYN_LINK=1 ]
[ run histogram_test.cpp /boost//histogram /boost//test_exec_monitor : <define>BOOST_TEST_DYN_LINK=1 ]
[ run nstore_test.cpp /boost//histogram /boost//test_exec_monitor : <define>BOOST_TEST_DYN_LINK=1 ]
[ run zero_suppression_test.cpp /boost//histogram /boost//test_exec_monitor : <define>BOOST_TEST_DYN_LINK=1 ]
;