summaryrefslogtreecommitdiff
path: root/Lib/test/test_ssl.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-04-22 18:00:41 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2010-04-22 18:00:41 +0000
commit9aed604fb25e7be9ade33706407a3bd55586641a (patch)
tree7fef25ec41da2afd0e3265ca7818259e50c7052b /Lib/test/test_ssl.py
parent60b1ee375c56b92f0e8cb02370f66fb5f5b7e322 (diff)
downloadcpython-git-9aed604fb25e7be9ade33706407a3bd55586641a.tar.gz
Skip test on old versions of OpenSSL
Diffstat (limited to 'Lib/test/test_ssl.py')
-rw-r--r--Lib/test/test_ssl.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index 28a4cf887a..458db269e5 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -235,15 +235,15 @@ 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")
s = ssl.wrap_socket(socket.socket(socket.AF_INET),
cert_reqs=ssl.CERT_REQUIRED,
ca_certs=sha256_cert,)
- if test_support.verbose:
- sys.stdout.write("\nOpenSSL version is %r / %r" %
- (ssl.OPENSSL_VERSION, ssl.OPENSSL_VERSION_INFO))
with test_support.transient_internet():
try:
s.connect(remote)