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
........
This commit is contained in:
Antoine Pitrou 2010-04-22 18:42:58 +00:00
parent 78ca466f7f
commit b7c656f2f5
1 changed files with 5 additions and 0 deletions

View File

@ -190,7 +190,12 @@ class NetworkedTests(unittest.TestCase):
if test_support.verbose: if test_support.verbose:
sys.stdout.write("\nVerified certificate for svn.python.org:443 is\n%s\n" % pem) 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): def test_algorithms(self):
if test_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 # Issue #8484: all algorithms should be available when verifying a
# certificate. # certificate.
# NOTE: https://sha256.tbs-internet.com is another possible test host # NOTE: https://sha256.tbs-internet.com is another possible test host