From: stratakis Date: Fri, 15 Feb 2019 18:01:27 +0000 (+0100) Subject: [2.7] bpo-33570: Enable OpenSSL 1.1.1 testing within the multissltests (GH-11879) X-Git-Tag: v2.7.16rc1~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3c49ec56890d9d591f8fd1609c8436019f28f96;p=thirdparty%2FPython%2Fcpython.git [2.7] bpo-33570: Enable OpenSSL 1.1.1 testing within the multissltests (GH-11879) multissltests: fix _build_src(), add 'cwd' variable. --- 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_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",