diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-22 19:34:03 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-22 20:30:06 +0200 |
| commit | 57afdea435e2fb22306d038f52f39852a74c7bdd (patch) | |
| tree | d7ce3e43a3a7ea1ca3e0b0584ac00b45c76736e0 /src | |
| parent | b260a2f2ccd8e6b81085f132849c8df41488af49 (diff) | |
| download | allocbench-57afdea435e2fb22306d038f52f39852a74c7bdd.tar.gz allocbench-57afdea435e2fb22306d038f52f39852a74c7bdd.zip | |
remove duplicate check if we really should run the benchmark
Diffstat (limited to 'src')
| -rw-r--r-- | src/benchmark.py | 5 |
1 files changed, 1 insertions, 4 deletions
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: |
