[Python-checkins] r43091 - python/trunk/Lib/test/test_timeout.py

neal.norwitz python-checkins at python.org
Fri Mar 17 05:37:37 CET 2006


Author: neal.norwitz
Date: Fri Mar 17 05:37:34 2006
New Revision: 43091

Modified:
   python/trunk/Lib/test/test_timeout.py
Log:
Try to find a host that responds slower from python.org so this test does not fail on macteagle (G4 OSX.4 in buildbot)

Modified: python/trunk/Lib/test/test_timeout.py
==============================================================================
--- python/trunk/Lib/test/test_timeout.py	(original)
+++ python/trunk/Lib/test/test_timeout.py	Fri Mar 17 05:37:34 2006
@@ -114,7 +114,7 @@
         # If we are too close to www.python.org, this test will fail.
         # Pick a host that should be farther away.
         if socket.getfqdn().split('.')[-2:] == ['python', 'org']:
-            self.addr_remote = ('python.net', 80)
+            self.addr_remote = ('tut.fi', 80)
 
         _t1 = time.time()
         self.failUnlessRaises(socket.error, self.sock.connect,


More information about the Python-checkins mailing list