diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-05-11 14:10:36 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-05-11 14:10:36 +0200 |
| commit | 602b28096f98a0f0d085ffd67b77b168bd92f0ad (patch) | |
| tree | 43d41a8cad5054765f3f76d8f28461481db5fd05 | |
| parent | 4923a96b603897009a21ad8b975d4a48765bb769 (diff) | |
| download | allocbench-602b28096f98a0f0d085ffd67b77b168bd92f0ad.tar.gz allocbench-602b28096f98a0f0d085ffd67b77b168bd92f0ad.zip | |
only delete during analyse created stats if they exist
| -rwxr-xr-x | bench.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -177,7 +177,7 @@ def main(): if "malt" in bench.results: del(bench.results["malt"]) - if "malt" in bench.results["stats"]: + if "stats" in bench.results and "malt" in bench.results["stats"]: del(bench.results["stats"]["malt"]) # restore allocs bench.allocators = old_allocs |
