[Python-checkins] [2.7] bpo-33570: Enable OpenSSL 1.1.1 testing within the multissltests (GH-11879)

Victor Stinner webhook-mailer at python.org
Fri Feb 15 13:01:32 EST 2019


https://github.com/python/cpython/commit/c3c49ec56890d9d591f8fd1609c8436019f28f96
commit: c3c49ec56890d9d591f8fd1609c8436019f28f96
branch: 2.7
author: stratakis <cstratak at redhat.com>
committer: Victor Stinner <vstinner at redhat.com>
date: 2019-02-15T19:01:27+01:00
summary:

[2.7] bpo-33570: Enable OpenSSL 1.1.1 testing within the multissltests (GH-11879)

multissltests: fix _build_src(), add 'cwd' variable.

files:
M Tools/ssl/multissltests.py

diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py
index a92f010bc888..78b068a46a50 100755
--- a/Tools/ssl/multissltests.py
+++ b/Tools/ssl/multissltests.py
@@ -48,7 +48,7 @@
 OPENSSL_RECENT_VERSIONS = [
      "1.0.2p",
      "1.1.0i",
-#     "1.1.1",
+     "1.1.1",
 ]
 
 LIBRESSL_OLD_VERSIONS = [
@@ -270,6 +270,7 @@ def _unpack_src(self):
     def _build_src(self):
         """Now build openssl"""
         log.info("Running build in {}".format(self.build_dir))
+        cwd = self.build_dir
         cmd = [
             "./config",
             "shared", "--debug",



More information about the Python-checkins mailing list