From: Antoine Pitrou Date: Fri, 22 Oct 2010 18:24:20 +0000 (+0000) Subject: Fix test_ssl on Ubuntu buildbot with patched OpenSSL X-Git-Tag: v3.2a4~384 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb585adbde24fc40f95a8bdf8099d71e82ce50ec;p=thirdparty%2FPython%2Fcpython.git Fix test_ssl on Ubuntu buildbot with patched OpenSSL --- diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 67bc01aba4ca..b11723c5381d 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -391,6 +391,7 @@ class ContextTests(unittest.TestCase): ctx.load_verify_locations(CERTFILE, CAPATH) ctx.load_verify_locations(CERTFILE, capath=BYTES_CAPATH) + @skip_if_broken_ubuntu_ssl def test_session_stats(self): for proto in PROTOCOLS: ctx = ssl.SSLContext(proto)