diff --git a/benchmark/Jamfile b/benchmark/Jamfile new file mode 100644 index 00000000..88ddec87 --- /dev/null +++ b/benchmark/Jamfile @@ -0,0 +1,20 @@ +# Copyright (c) 2018 Mateusz Loskot +# 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-benchmark + : requirements + $(BOOST_ROOT) + . + ; + +alias run-speed-test : + [ run speed_boost.cpp ] + ; + +explicit run-speed-test ; diff --git a/test/run_speed_gsl.sh b/benchmark/run_speed_gsl.sh similarity index 100% rename from test/run_speed_gsl.sh rename to benchmark/run_speed_gsl.sh diff --git a/test/run_speed_root.sh b/benchmark/run_speed_root.sh similarity index 100% rename from test/run_speed_root.sh rename to benchmark/run_speed_root.sh diff --git a/test/speed_boost.cpp b/benchmark/speed_boost.cpp similarity index 100% rename from test/speed_boost.cpp rename to benchmark/speed_boost.cpp diff --git a/test/speed_gsl.cpp b/benchmark/speed_gsl.cpp similarity index 100% rename from test/speed_gsl.cpp rename to benchmark/speed_gsl.cpp diff --git a/test/speed_root.cpp b/benchmark/speed_root.cpp similarity index 100% rename from test/speed_root.cpp rename to benchmark/speed_root.cpp