diff options
author | Ćukasz Langa <lukasz@langa.pl> | 2021-09-08 17:01:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-08 17:01:25 (GMT) |
commit | 7a6178a7cd8514911e9480f826838dc789fb8655 (patch) | |
tree | fdd8fbb5a4b1d61b23665f504476513ff29969bc /Tools | |
parent | a328a13b70ea0b0bec8b9d1b0067628369cabea9 (diff) | |
download | cpython-7a6178a7cd8514911e9480f826838dc789fb8655.zip cpython-7a6178a7cd8514911e9480f826838dc789fb8655.tar.gz cpython-7a6178a7cd8514911e9480f826838dc789fb8655.tar.bz2 |
[3.9] bpo-38820: Test with OpenSSL 3.0.0 final (GH-28205) (GH-28217)
Signed-off-by: Christian Heimes <christian@python.org>.
(cherry picked from commit cc7c6801945c6a7373553b78bd899ce09681ec0a)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/ssl/multissltests.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index 6baec7b..8888c4a 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -50,7 +50,7 @@ OPENSSL_OLD_VERSIONS = [ OPENSSL_RECENT_VERSIONS = [ "1.1.1l", - "3.0.0-beta1" + "3.0.0" ] LIBRESSL_OLD_VERSIONS = [ @@ -410,6 +410,10 @@ class BuildOpenSSL(AbstractBuilder): ["make", "-j1", "install_ssldirs", "install_fips"], cwd=self.build_dir ) + if not os.path.isdir(self.lib_dir): + # 3.0.0-beta2 uses lib64 on 64 bit platforms + lib64 = self.lib_dir + "64" + os.symlink(lib64, self.lib_dir) @property def short_version(self): |