aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks/httpd.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/httpd.py')
-rw-r--r--src/benchmarks/httpd.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/benchmarks/httpd.py b/src/benchmarks/httpd.py
index 2ac7fbc..b63f675 100644
--- a/src/benchmarks/httpd.py
+++ b/src/benchmarks/httpd.py
@@ -1,12 +1,15 @@
+"""Definition of the httpd benchmark"""
+
import re
from src.benchmark import Benchmark
-class Benchmark_HTTPD(Benchmark):
+class BenchmarkHTTPD(Benchmark):
+ """TODO"""
+
def __init__(self):
self.name = "httpd"
- self.descrition = """TODO"""
self.args = {"nthreads": Benchmark.scale_threads_for_cpus(2),
"site": ["index.html", "index.php"]}
@@ -60,4 +63,4 @@ class Benchmark_HTTPD(Benchmark):
# title='"ab -n 10000 -c threads"')
-httpd = Benchmark_HTTPD()
+httpd = BenchmarkHTTPD()