diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-04-22 18:46:16 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-04-22 18:46:16 (GMT) |
commit | ae92a72b2143490ae676b572a7dc4eca7b5d1e14 (patch) | |
tree | 5c80ac39b09c834634021a58fd02fd05b4032d14 /Lib | |
parent | c41582caa06a495bf3dcb9fdb49fd9c344939c41 (diff) | |
download | cpython-ae92a72b2143490ae676b572a7dc4eca7b5d1e14.zip cpython-ae92a72b2143490ae676b572a7dc4eca7b5d1e14.tar.gz cpython-ae92a72b2143490ae676b572a7dc4eca7b5d1e14.tar.bz2 |
Merged revisions 80379 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r80379 | antoine.pitrou | 2010-04-22 20:43:31 +0200 (jeu., 22 avril 2010) | 9 lines
Merged revisions 80375 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80375 | antoine.pitrou | 2010-04-22 20:00:41 +0200 (jeu., 22 avril 2010) | 3 lines
Skip test on old versions of OpenSSL
........
................
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_ssl.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 15af333..91d17b5 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -176,9 +176,17 @@ class NetworkedTests(unittest.TestCase): if support.verbose: sys.stdout.write("\nVerified certificate for svn.python.org:443 is\n%s\n" % pem) + # Test disabled: OPENSSL_VERSION* not available in Python 2.6 def test_algorithms(self): + if support.verbose: + sys.stdout.write("test_algorithms disabled, " + "as it fails on some old OpenSSL versions") + return # Issue #8484: all algorithms should be available when verifying a # certificate. + # SHA256 was added in OpenSSL 0.9.8 + if ssl.OPENSSL_VERSION_INFO < (0, 9, 8, 0, 15): + self.skipTest("SHA256 not available on %r" % ssl.OPENSSL_VERSION) # NOTE: https://sha256.tbs-internet.com is another possible test host remote = ("sha2.hboeck.de", 443) sha256_cert = os.path.join(os.path.dirname(__file__), "sha256.pem") |