mirror of
https://github.com/curl/curl.git
synced 2026-06-14 05:35:37 +03:00
or higher -> or greater 3 tests
This commit is contained in:
parent
b92d14018c
commit
fee38eb181
2 changed files with 6 additions and 6 deletions
|
|
@ -165,7 +165,7 @@ class TestBasic:
|
|||
|
||||
# http: response headers larger than what curl buffers for
|
||||
@pytest.mark.skipif(condition=not Env.httpd_is_at_least('2.4.64'),
|
||||
reason='httpd must be 2.4.64 or higher')
|
||||
reason='httpd must be 2.4.64 or greater')
|
||||
@pytest.mark.parametrize("proto", Env.http_h1_h2_protos())
|
||||
def test_01_12_xlarge_resp_headers(self, env: Env, httpd, configures_httpd, proto):
|
||||
httpd.set_extra_config('base', [
|
||||
|
|
@ -182,7 +182,7 @@ class TestBasic:
|
|||
|
||||
# http: 1 response header larger than what curl buffers for
|
||||
@pytest.mark.skipif(condition=not Env.httpd_is_at_least('2.4.64'),
|
||||
reason='httpd must be 2.4.64 or higher')
|
||||
reason='httpd must be 2.4.64 or greater')
|
||||
@pytest.mark.parametrize("proto", Env.http_h1_h2_protos())
|
||||
def test_01_13_megalarge_resp_headers(self, env: Env, httpd, configures_httpd, proto):
|
||||
httpd.set_extra_config('base', [
|
||||
|
|
@ -202,7 +202,7 @@ class TestBasic:
|
|||
# http: several response headers, together > 256 KB
|
||||
# nghttp2 error -905: Too many CONTINUATION frames following a HEADER frame
|
||||
@pytest.mark.skipif(condition=not Env.httpd_is_at_least('2.4.64'),
|
||||
reason='httpd must be 2.4.64 or higher')
|
||||
reason='httpd must be 2.4.64 or greater')
|
||||
@pytest.mark.parametrize("proto", Env.http_h1_h2_protos())
|
||||
def test_01_14_gigalarge_resp_headers(self, env: Env, httpd, configures_httpd, proto):
|
||||
httpd.set_extra_config('base', [
|
||||
|
|
@ -221,7 +221,7 @@ class TestBasic:
|
|||
|
||||
# http: one response header > 256 KB
|
||||
@pytest.mark.skipif(condition=not Env.httpd_is_at_least('2.4.64'),
|
||||
reason='httpd must be 2.4.64 or higher')
|
||||
reason='httpd must be 2.4.64 or greater')
|
||||
@pytest.mark.parametrize("proto", Env.http_h1_h2_protos())
|
||||
def test_01_15_gigalarge_resp_headers(self, env: Env, httpd, configures_httpd, proto):
|
||||
httpd.set_extra_config('base', [
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ my $logdir = $path .'/log';
|
|||
my $piddir;
|
||||
|
||||
#***************************************************************************
|
||||
# Signal handler to remove our stunnel 4.00 or higher configuration file.
|
||||
# Signal handler to remove our stunnel 4.00 or greater configuration file.
|
||||
#
|
||||
sub exit_signal_handler {
|
||||
my $signame = shift;
|
||||
|
|
@ -280,7 +280,7 @@ if($stunnel_version < 400) {
|
|||
}
|
||||
|
||||
#***************************************************************************
|
||||
# Build command to execute for stunnel 4.00 or higher
|
||||
# Build command to execute for stunnel 4.00 or greater
|
||||
#
|
||||
if($stunnel_version >= 400) {
|
||||
$socketopt = "a:SO_REUSEADDR=1";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue