From ddc20134ffbc1f16e63ea28d2dfc6b66c39a82de Mon Sep 17 00:00:00 2001 From: Hans Dembinski Date: Fri, 8 Feb 2019 16:26:41 +0100 Subject: [PATCH] fixing benchmark build --- benchmark/Jamfile | 9 ++++++++- test/axis_bench.cpp => benchmark/axis_index.cpp | 0 .../histogram_iteration.cpp | 0 .../histogram_parallel_filling.cpp | 0 4 files changed, 8 insertions(+), 1 deletion(-) rename test/axis_bench.cpp => benchmark/axis_index.cpp (100%) rename test/iteration_bench.cpp => benchmark/histogram_iteration.cpp (100%) rename test/parallel_filling_bench.cpp => benchmark/histogram_parallel_filling.cpp (100%) diff --git a/benchmark/Jamfile b/benchmark/Jamfile index 88ddec87..c29f5587 100644 --- a/benchmark/Jamfile +++ b/benchmark/Jamfile @@ -7,7 +7,7 @@ import testing ; -project histogram-benchmark +project : requirements $(BOOST_ROOT) . @@ -17,4 +17,11 @@ alias run-speed-test : [ run speed_boost.cpp ] ; +alias run-google-benchmarks : + [ run axis_index.cpp ] + [ run histogram_iteration.cpp ] + [ run histogram_parallel_filling.cpp ] + ; + explicit run-speed-test ; +explicit run-google-benchmarks ; diff --git a/test/axis_bench.cpp b/benchmark/axis_index.cpp similarity index 100% rename from test/axis_bench.cpp rename to benchmark/axis_index.cpp diff --git a/test/iteration_bench.cpp b/benchmark/histogram_iteration.cpp similarity index 100% rename from test/iteration_bench.cpp rename to benchmark/histogram_iteration.cpp diff --git a/test/parallel_filling_bench.cpp b/benchmark/histogram_parallel_filling.cpp similarity index 100% rename from test/parallel_filling_bench.cpp rename to benchmark/histogram_parallel_filling.cpp