diff options
author | Illia Volochii <illia.volochii@gmail.com> | 2022-12-24 04:04:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-23 18:04:20 -0800 |
commit | a23cb72ac82372fac05ba36ce08923840ca0de06 (patch) | |
tree | 05b68841541057e3db99231701cafe4bf3cba97c /Tools/ssl/multissltests.py | |
parent | 7ca45e5ddd493411e61706d07679ea54b954e41b (diff) | |
download | cpython-git-a23cb72ac82372fac05ba36ce08923840ca0de06.tar.gz |
gh-100454: Start running SSL tests with OpenSSL 3.1.0-beta1 (#100456)
Diffstat (limited to 'Tools/ssl/multissltests.py')
-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 30d66964fd..5ad597c834 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -402,15 +402,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( |