From c04e0d43c78ffedf1611ed2bbf81d5ab732e5f2f Mon Sep 17 00:00:00 2001 From: "Mads R. B. Kristensen" Date: Thu, 7 Dec 2017 15:09:54 +0100 Subject: [PATCH] fixed path in benchmark_path() --- benchpress/suite_util.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/benchpress/suite_util.py b/benchpress/suite_util.py index 514415e4..f58080de 100644 --- a/benchpress/suite_util.py +++ b/benchpress/suite_util.py @@ -34,5 +34,4 @@ def benchmark_path(name, implementation, extension): path : str Absolute path to the executable """ - - return realpath(join(_script_path(), "..", "benchmarks", name, implementation, "%s%s" % (name, extension))) + return realpath(join(_script_path(), "benchmarks", name, implementation, "%s%s" % (name, extension)))