Allow second run for ffdhe8192 ssl-opt tests

Signed-off-by: Przemek Stekiel <przemyslaw.stekiel@mobica.com>
This commit is contained in:
Przemek Stekiel 2023-06-25 21:14:39 +02:00
parent f595c5b69a
commit 6d00c67d89
2 changed files with 63 additions and 0 deletions

View file

@ -185,6 +185,11 @@ class OpenSSLBase(TLSProgram):
if any(x in ffdh_groups for x in self._named_groups):
ret.append('requires_openssl_3_x')
# ffdhe8192 has very long keys and requires intensive computation.
# The test may fail on CI when executor is just very loaded. Give a second chance.
if 'ffdhe8192' in self._named_groups:
ret.append('client_needs_more_time 2')
return ret