From 130765de719a3ddc475284e13749d09ff371a8e1 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Fri, 1 Feb 2019 16:35:20 +0100 Subject: rework build system #1 each benchmark has its own Makefile which must put it's binaries into OBJDIR which is added to the PATH during execution. --- src/larson.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/larson.py') diff --git a/src/larson.py b/src/larson.py index 0a4a237..a035de8 100644 --- a/src/larson.py +++ b/src/larson.py @@ -13,14 +13,14 @@ class Benchmark_Larson( Benchmark ): and deallocates objects, and then transfers some objects (randomly selected) to other threads to be freed.""" - self.cmd = "build/larson{binary_suffix} 1 8 {maxsize} 1000 50000 1 {threads}" + self.cmd = "larson{binary_suffix} 1 8 {maxsize} 1000 50000 1 {threads}" self.args = { "maxsize" : [8, 32, 64, 128, 256, 512, 1024], "threads" : range(1, multiprocessing.cpu_count() * 2 + 1) } - self.requirements = ["build/larson"] + self.requirements = ["larson"] super().__init__() def process_output(self, result, stdout, stderr, target, perm, verbose): -- cgit v1.2.3