[Python-checkins] r43516 - python/trunk/Lib/test/test_socket_ssl.py

tim.peters python-checkins at python.org
Sat Apr 1 03:29:05 CEST 2006


Author: tim.peters
Date: Sat Apr  1 03:28:51 2006
New Revision: 43516

Modified:
   python/trunk/Lib/test/test_socket_ssl.py
Log:
test_timeout():  Disable this new test on all platforms.

The

    s.connect(("gmail.org", 995))

line has been timing out on all buildbot slaves for hours
now, causing the test to fail.


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  1 03:28:51 2006
@@ -27,23 +27,27 @@
     buf = f.read()
     f.close()
 
-if not sys.platform.startswith('win'):
+# 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')
 
         s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
         s.settimeout(30.0)
-        # connect to service which issues an welcome banner (without need to write anything)
+        # connect to service which issues an welcome banner (without need to
+        # write anything)
         s.connect(("gmail.org", 995))
         ss = socket.ssl(s)
-        # read part of return welcome banner twice,# read part of return welcome banner twice
+        # read part of return welcome banner twice
         ss.read(1)
         ss.read(1)
         s.close()
 else:
     def test_timeout():
         pass
-					    
+
 def test_rude_shutdown():
     try:
         import threading


More information about the Python-checkins mailing list