summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorstratakis <cstratak@redhat.com>2019-02-15 18:01:27 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-02-15 18:01:27 (GMT)
commitc3c49ec56890d9d591f8fd1609c8436019f28f96 (patch)
treeb741009418e98df1614951ca727c4727e7b0f6fa /Tools
parent2149a9ad7a9d39d7d680ec0fb602042c91057484 (diff)
downloadcpython-c3c49ec56890d9d591f8fd1609c8436019f28f96.zip
cpython-c3c49ec56890d9d591f8fd1609c8436019f28f96.tar.gz
cpython-c3c49ec56890d9d591f8fd1609c8436019f28f96.tar.bz2
[2.7] bpo-33570: Enable OpenSSL 1.1.1 testing within the multissltests (GH-11879)
multissltests: fix _build_src(), add 'cwd' variable.
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/ssl/multissltests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py
index a92f010..78b068a 100755
--- a/Tools/ssl/multissltests.py
+++ b/Tools/ssl/multissltests.py
@@ -48,7 +48,7 @@ OPENSSL_OLD_VERSIONS = [
OPENSSL_RECENT_VERSIONS = [
"1.0.2p",
"1.1.0i",
-# "1.1.1",
+ "1.1.1",
]
LIBRESSL_OLD_VERSIONS = [
@@ -270,6 +270,7 @@ class AbstractBuilder(object):
def _build_src(self):
"""Now build openssl"""
log.info("Running build in {}".format(self.build_dir))
+ cwd = self.build_dir
cmd = [
"./config",
"shared", "--debug",