aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-02-22 15:40:18 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-02-22 15:40:18 +0100
commitb5af8192d0cd681513bf4cdd1666624de33f4dec (patch)
tree65d6f1aadd649d54b97835af08866718bd2c86c9
parentb3b95381d7cc48b11ffaf8ee4cbb0a4fe8f6b6f5 (diff)
downloadallocbench-b5af8192d0cd681513bf4cdd1666624de33f4dec.tar.gz
allocbench-b5af8192d0cd681513bf4cdd1666624de33f4dec.zip
don't skip complete run if one prepare fails
-rwxr-xr-xbench.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench.py b/bench.py
index 1261c54..5fe79f7 100755
--- a/bench.py
+++ b/bench.py
@@ -76,7 +76,7 @@ def main():
print("Preparing", bench.name, "...")
if not bench.prepare():
print("Preparing", bench.name, "failed!")
- return
+ continue
if not bench.run(runs=args.runs, verbose=args.verbose):
continue