[Python-checkins] r43734 - python/trunk/Lib/test/test_socket_ssl.py (original) (raw)

tim.peters python-checkins at python.org
Sat Apr 8 14:05:16 CEST 2006


Author: tim.peters Date: Sat Apr 8 14:05:15 2006 New Revision: 43734

Modified: python/trunk/Lib/test/test_socket_ssl.py Log: test_timeout(): This test was added during Bug Day, but disabled soon after because the gmail address it connects to started timing out on all the buildbot slaves. Rewrote the test to produce a warning message (instead of failing) when the address times out.

Also removed the special case for Windows -- this test started to work on Windows as soon as bug 1462352 was fixed.

Modified: python/trunk/Lib/test/test_socket_ssl.py

--- python/trunk/Lib/test/test_socket_ssl.py (original) +++ python/trunk/Lib/test/test_socket_ssl.py Sat Apr 8 14:05:15 2006 @@ -14,6 +14,9 @@ import urllib + if test_support.verbose: + print "test_basic ..." + socket.RAND_status() try: socket.RAND_egd(1) @@ -27,28 +30,41 @@ buf = f.read() f.close() -# XXX Tim disabled this test on all platforms, for now, since the -# XXX s.connect(("gmail.org", 995)) -# XXX line starting timing out on all the builbot slaves. -if 0: #not sys.platform.startswith('win'): - def test_timeout(): - test_support.requires('network')

-else:

+def test_timeout():

def test_rude_shutdown():



More information about the Python-checkins mailing list