summaryrefslogtreecommitdiffstats
path: root/Tools/ssl
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2021-09-07 17:04:55 (GMT)
committerGitHub <noreply@github.com>2021-09-07 17:04:55 (GMT)
commitcc7c6801945c6a7373553b78bd899ce09681ec0a (patch)
tree4ec2536540586c7549bdc53bac34db54cadbf5d8 /Tools/ssl
parentc4ea45d7d2c02674db2fdb96c7eee89324d2dc64 (diff)
downloadcpython-cc7c6801945c6a7373553b78bd899ce09681ec0a.zip
cpython-cc7c6801945c6a7373553b78bd899ce09681ec0a.tar.gz
cpython-cc7c6801945c6a7373553b78bd899ce09681ec0a.tar.bz2
bpo-38820: Test with OpenSSL 3.0.0 final (GH-28205)
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Tools/ssl')
-rwxr-xr-xTools/ssl/multissltests.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py
index 9b46c8c..7bdfd0b 100755
--- a/Tools/ssl/multissltests.py
+++ b/Tools/ssl/multissltests.py
@@ -48,7 +48,7 @@ OPENSSL_OLD_VERSIONS = [
OPENSSL_RECENT_VERSIONS = [
"1.1.1l",
- "3.0.0-beta1"
+ "3.0.0"
]
LIBRESSL_OLD_VERSIONS = [
@@ -412,6 +412,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):