summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-04-22 18:43:31 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2010-04-22 18:43:31 +0000
commit29619b2affaf27cfc8c93b97052de7b5eb9fca63 (patch)
treeecd97e12bfadf700cf5562a822d044a49fa0e6ab /Lib
parent22b6f9d1cba80d7fb02042bec40837020ed7367b (diff)
downloadcpython-git-29619b2affaf27cfc8c93b97052de7b5eb9fca63.tar.gz
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.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index 77a5d6d7b6..2aa265ae30 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -221,6 +221,9 @@ class NetworkedTests(unittest.TestCase):
def test_algorithms(self):
# 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")