aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks/httpd.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-08-27 17:11:21 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-08-27 17:11:21 +0200
commit7e298c025da08d0de096df3fcac7c8fafac9f5c2 (patch)
treed905bee6549430b25580d289cdd44776718c5b55 /src/benchmarks/httpd.py
parent93e3aac6315c17a74e63f02053a3e8e2e6b21928 (diff)
downloadallocbench-7e298c025da08d0de096df3fcac7c8fafac9f5c2.tar.gz
allocbench-7e298c025da08d0de096df3fcac7c8fafac9f5c2.zip
remove verbosity argument from hooks
Diffstat (limited to 'src/benchmarks/httpd.py')
-rw-r--r--src/benchmarks/httpd.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/benchmarks/httpd.py b/src/benchmarks/httpd.py
index b63f675..d981233 100644
--- a/src/benchmarks/httpd.py
+++ b/src/benchmarks/httpd.py
@@ -22,7 +22,8 @@ class BenchmarkHTTPD(Benchmark):
super().__init__()
- def process_output(self, result, stdout, stderr, allocator, perm, verbose):
+ @staticmethod
+ def process_output(result, stdout, stderr, allocator, perm):
result["time"] = re.search("Time taken for tests:\\s*(\\d*\\.\\d*) seconds", stdout).group(1)
result["requests"] = re.search("Requests per second:\\s*(\\d*\\.\\d*) .*", stdout).group(1)