diff options
| -rwxr-xr-x | bench.py | 4 | ||||
| -rw-r--r-- | src/benchmark.py | 5 |
2 files changed, 3 insertions, 6 deletions
@@ -246,9 +246,9 @@ def main(): else: print_error("malt not found. Skipping analyse.") - if args.runs > 1: + if args.runs > 0: print_status("Running", bench.name, "...") - bench.run(runs=args.runs) + bench.run(runs=args.runs) if need_resultdir: print_info2("Changing cwd to:", resdir) diff --git a/src/benchmark.py b/src/benchmark.py index 890d414..3174416 100644 --- a/src/benchmark.py +++ b/src/benchmark.py @@ -258,10 +258,7 @@ class Benchmark (object): for server in self.servers: Benchmark.terminate_subprocess(server) - def run(self, runs=5): - if runs < 1: - return - + def run(self, runs=3): # check if perf is allowed on this system if self.measure_cmd == self.defaults["measure_cmd"]: if Benchmark.perf_allowed is None: |
