diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-12 14:06:58 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-12 14:06:58 +0200 |
| commit | ef3bfba879fb11d88580ffbdcf2f25dae21fa9fd (patch) | |
| tree | e6911498c0c3a1b8a362bc66b1ea015c67270e37 | |
| parent | 291b0b9e655df75286e067b5099f3bd0490d01a2 (diff) | |
| download | allocbench-ef3bfba879fb11d88580ffbdcf2f25dae21fa9fd.tar.gz allocbench-ef3bfba879fb11d88580ffbdcf2f25dae21fa9fd.zip | |
use absolut path of benchmark binary
| -rw-r--r-- | src/benchmark.py | 3 |
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 |
