summaryrefslogtreecommitdiff
path: root/test/modules
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2022-03-24 09:06:29 +0000
committerStefan Eissing <icing@apache.org>2022-03-24 09:06:29 +0000
commita457310273fd891b2a36f59353a4aec9b924949d (patch)
treea76692da7cb2bc193d7e8a41fc59d2a7e723ae91 /test/modules
parent8da00af1c013c93cb2d28270528fa27b57f9d096 (diff)
downloadhttpd-a457310273fd891b2a36f59353a4aec9b924949d.tar.gz
*) mod_http2: fixed a possible concurrency issue with
registering h2_mplx at h2_workers. Improved h2_fifo internals efficiency inspired by ap_fdqueue. Made 711 tests repeatable. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1899168 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/modules')
-rw-r--r--test/modules/http2/test_710_load_post_static.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/modules/http2/test_710_load_post_static.py b/test/modules/http2/test_710_load_post_static.py
index 9a0e1e250b..fd1b5abe80 100644
--- a/test/modules/http2/test_710_load_post_static.py
+++ b/test/modules/http2/test_710_load_post_static.py
@@ -25,7 +25,7 @@ class TestLoadPostStatic:
assert 0 == r.results["h2load"]["status"]["5xx"]
# test POST on static file, slurped in by server
- def test_h2_710_00(self, env):
+ def test_h2_710_00(self, env, repeat):
url = env.mkurl("https", "test1", "/index.html")
n = 10
m = 1
@@ -37,7 +37,7 @@ class TestLoadPostStatic:
r = env.run(args)
self.check_h2load_ok(env, r, n)
- def test_h2_710_01(self, env):
+ def test_h2_710_01(self, env, repeat):
url = env.mkurl("https", "test1", "/index.html")
n = 1000
m = 100
@@ -49,7 +49,7 @@ class TestLoadPostStatic:
r = env.run(args)
self.check_h2load_ok(env, r, n)
- def test_h2_710_02(self, env):
+ def test_h2_710_02(self, env, repeat):
url = env.mkurl("https", "test1", "/index.html")
n = 100
m = 50