Skip to content

Commit

Permalink
pythongh-100454: Fix running SSL tests with OpenSSL 3.1+ (pythonGH-10…
Browse files Browse the repository at this point in the history
…0456)

This fixes Ubuntu pipeline with OpenSSL 3.1+
  • Loading branch information
illia-v authored and xnox committed Apr 24, 2024
1 parent 812245e commit 1cff36d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix SSL tests CI for OpenSSL 3.1+
8 changes: 4 additions & 4 deletions Tools/ssl/multissltests.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,15 +404,15 @@ class BuildOpenSSL(AbstractBuilder):
depend_target = 'depend'

def _post_install(self):
if self.version.startswith("3.0"):
self._post_install_300()
if self.version.startswith("3."):
self._post_install_3xx()

def _build_src(self, config_args=()):
if self.version.startswith("3.0"):
if self.version.startswith("3."):
config_args += ("enable-fips",)
super()._build_src(config_args)

def _post_install_300(self):
def _post_install_3xx(self):
# create ssl/ subdir with example configs
# Install FIPS module
self._subprocess_call(
Expand Down

0 comments on commit 1cff36d

Please sign in to comment.