aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-08-25 11:27:03 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-08-25 11:27:03 +0200
commit6409063abede94b1e6cfd39880e9a390f3054bbe (patch)
treea17364ff5faa66c225c268b26a98a74f760dd273
parente5d3d3dcf4d48493ec08e8788cb76e4ab7f29dd7 (diff)
downloadallocbench-6409063abede94b1e6cfd39880e9a390f3054bbe.tar.gz
allocbench-6409063abede94b1e6cfd39880e9a390f3054bbe.zip
add result directory to trace file
-rwxr-xr-xbench.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench.py b/bench.py
index b957457..190297a 100755
--- a/bench.py
+++ b/bench.py
@@ -248,7 +248,7 @@ def main():
print_info("Plotting chattymalloc histograms")
for f in os.listdir(bench.result_dir):
if f.startswith("chatty_") and f.endswith(".txt"):
- src.chattyparser.plot(f)
+ src.chattyparser.plot(os.path.join(bench.result_dir, f))
if args.runs > 0:
print_status("Running", bench.name, "...")