diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-06-17 13:35:04 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-06-17 13:35:04 +0200 |
| commit | 3988f2e21754208a548725c590fb42e372a32efa (patch) | |
| tree | b7c6d80131b89bd46d53f57a324e085af9578bb5 | |
| parent | fd16a298d28d71d0f13a6978b6c0a642e7c4117b (diff) | |
| download | allocbench-3988f2e21754208a548725c590fb42e372a32efa.tar.gz allocbench-3988f2e21754208a548725c590fb42e372a32efa.zip | |
fix old variable name in debug output
| -rw-r--r-- | src/benchmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/benchmark.py b/src/benchmark.py index 4069da1..709005a 100644 --- a/src/benchmark.py +++ b/src/benchmark.py @@ -324,7 +324,7 @@ class Benchmark (object): if res.returncode != 0: print_error("{} failed with exit code {} for {}".format(actual_cmd, res.returncode, alloc_name)) else: - print_error("Preloading of {} failed for {}".format(t["LD_PRELOAD"], alloc_name)) + print_error("Preloading of {} failed for {}".format(alloc["LD_PRELOAD"], alloc_name)) # parse and store results else: |
