summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2022-03-18 09:52:52 +0000
committerStefan Eissing <icing@apache.org>2022-03-18 09:52:52 +0000
commit6bd9d17e081692d3555d1c9803962c883acd136b (patch)
tree61bed2fc5a3746e58932712e5c5eb477a11fa5f0 /test
parent898f3dc3d0b60320e2f2fb09c7979b46a9fa116e (diff)
downloadhttpd-6bd9d17e081692d3555d1c9803962c883acd136b.tar.gz
*) core: adding a new hook and method to the API:
create_secondary_connection and ap_create_secondary_connection() to setup connections related to a "master" one, as used in the HTTP/2 protocol implementation. *) mod_http2: using the new API calls to get rid of knowledge about how the core handles conn_rec specifics. Improvements in pollset stream handling to use less sets. Using atomic read/writes instead of volatiles now. Keeping a reserve of "transit" pools and bucket_allocs for use on secondary connections to avoid repeated setup/teardowns. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1899032 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r--test/modules/http2/test_711_load_post_cgi.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/modules/http2/test_711_load_post_cgi.py b/test/modules/http2/test_711_load_post_cgi.py
index 81bc8e10bc..94c16002a7 100644
--- a/test/modules/http2/test_711_load_post_cgi.py
+++ b/test/modules/http2/test_711_load_post_cgi.py
@@ -25,7 +25,7 @@ class TestLoadCgi:
assert 0 == r.results["h2load"]["status"]["5xx"]
# test POST on cgi, where input is read
- def test_h2_711_10(self, env):
+ def test_h2_711_10(self, env, repeat):
url = env.mkurl("https", "test1", "/echo.py")
n = 100
m = 5
@@ -40,7 +40,7 @@ class TestLoadCgi:
self.check_h2load_ok(env, r, n)
# test POST on cgi via http/1.1 proxy, where input is read
- def test_h2_711_11(self, env):
+ def test_h2_711_11(self, env, repeat):
url = env.mkurl("https", "test1", "/proxy/echo.py")
n = 100
m = 5
@@ -55,7 +55,7 @@ class TestLoadCgi:
self.check_h2load_ok(env, r, n)
# test POST on cgi via h2proxy, where input is read
- def test_h2_711_12(self, env):
+ def test_h2_711_12(self, env, repeat):
url = env.mkurl("https", "test1", "/h2proxy/echo.py")
n = 100
m = 5