Skip to content
Snippets Groups Projects
Commit 25d01292 authored by Florian Fischer's avatar Florian Fischer
Browse files

use sane iterations (100 -> 10000)

parent 1cdd2f64
Branches
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ class Benchmark_HTTPD(Benchmark):
self.args = {"nthreads": Benchmark.scale_threads_for_cpus(2),
"site": ["index.html", "index.php"]}
self.cmd = "ab -n 100 -c {nthreads} localhost:8080/{site}"
self.cmd = "ab -n 10000 -c {nthreads} localhost:8080/{site}"
self.measure_cmd = ""
self.server_cmds = ["nginx -c {builddir}/benchmarks/httpd/etc/nginx/nginx.conf",
"php-fpm -c {builddir}/benchmarks/httpd/etc/php/php.ini -y {builddir}/benchmarks/httpd/etc/php/php-fpm.conf -F"]
......
......@@ -19,8 +19,6 @@ def collect_facts():
with open(os.path.join(gv.builddir, "ccinfo"), "r") as ccinfo:
gv.facts["cc"] = ccinfo.readlines()[-1][:-1]
# Copied from pip.
# https://github.com/pypa/pip/blob/master/src/pip/_internal/utils/glibc.py
# Licensed under MIT.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment