diff options
author | Rainer Jung <rjung@apache.org> | 2022-07-11 15:49:45 +0200 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2022-07-11 15:49:45 +0200 |
commit | e1625133b1117c51cfce1088eff09b44fe792cb4 (patch) | |
tree | 5c499507b6ba487b1824f2482a12571031360797 /test/modules/http2/env.py | |
parent | mpm_winnt: Follow up to r1902636: another compilation error. (diff) | |
download | apache2-e1625133b1117c51cfce1088eff09b44fe792cb4.tar.xz apache2-e1625133b1117c51cfce1088eff09b44fe792cb4.zip |
Make pytest error whitelist a bit more explicit
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1902660 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | test/modules/http2/env.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/modules/http2/env.py b/test/modules/http2/env.py index d3a8a65dd9..55dce59107 100644 --- a/test/modules/http2/env.py +++ b/test/modules/http2/env.py @@ -99,9 +99,14 @@ class H2TestEnv(HttpdTestEnv): self.httpd_error_log.add_ignored_patterns([ re.compile(r'.*malformed header from script \'hecho.py\': Bad header: x.*'), re.compile(r'.*:tls_post_process_client_hello:.*'), + # OSSL 3 dropped the function name from the error description. Use the code instead: + # 0A0000C1 = no shared cipher -- Too restrictive SSLCipherSuite or using DSA server certificate? + re.compile(r'.*SSL Library Error: error:0A0000C1:.*'), re.compile(r'.*:tls_process_client_certificate:.*'), + # OSSL 3 dropped the function name from the error description. Use the code instead: + # 0A0000C7 = peer did not return a certificate -- No CAs known to server for verification? + re.compile(r'.*SSL Library Error: error:0A0000C7:.*'), re.compile(r'.*have incompatible TLS configurations.'), - re.compile(r'.*SSL Library Error: error:0A0000C[17]:.*'), ]) def setup_httpd(self, setup: HttpdTestSetup = None): |