diff options
author | Gregory P. Smith <greg@krypto.org> | 2022-12-24 20:12:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 20:12:04 (GMT) |
commit | 341bdd6589cf11b1d01e8928fde8c180e1a92b5a (patch) | |
tree | 80ebf9842c19ac5c2a7448491726dda15ece0a99 /Tools | |
parent | a7eee898abb6314669d700e9a22013f2210b1b7e (diff) | |
download | cpython-341bdd6589cf11b1d01e8928fde8c180e1a92b5a.zip cpython-341bdd6589cf11b1d01e8928fde8c180e1a92b5a.tar.gz cpython-341bdd6589cf11b1d01e8928fde8c180e1a92b5a.tar.bz2 |
[3.11] gh-100454: Start running SSL tests with OpenSSL 3.1.0-beta1 (#100486)
[3.11] gh-100454: Start running SSL tests with OpenSSL 3.1.0-beta1 (GH-100456).
(cherry picked from commit a23cb72ac82372fac05ba36ce08923840ca0de06)
Co-authored-by: Illia Volochii <illia.volochii@gmail.com>
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/ssl/multissltests.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index 91d6f55..b1aacfa 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -403,15 +403,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( |