aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/benchmark.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/benchmark.py b/src/benchmark.py
index c869061..49af089 100644
--- a/src/benchmark.py
+++ b/src/benchmark.py
@@ -315,7 +315,8 @@ class Benchmark (object):
substitutions["perm"] = ("{}-"*(len(perm)-1) + "{}").format(*perm)
substitutions.update(alloc)
- cmd_argv = self.cmd.format(**substitutions).split()
+ cmd_argv = self.cmd.format(**substitutions)
+ cmd_argv = src.util.prefix_cmd_with_abspath(cmd_argv).split()
argv = []
# Prepend cmd if we are not measuring servers