Try to fix issue #16264 (test_logging failure on some buildbots).

This commit is contained in:
Antoine Pitrou 2012-10-21 17:18:27 +02:00
parent 186370b433
commit da201fa248
1 changed files with 4 additions and 1 deletions

View File

@ -1441,9 +1441,12 @@ class SocketHandlerTest(BaseTest):
self.assertEqual(self.log_output, "spam\neggs\n")
def test_noserver(self):
# Avoid timing-related failures due to SocketHandler's own hard-wired
# one-second timeout on socket.create_connection() (issue #16264).
self.sock_hdlr.retryStart = 2.5
# Kill the server
self.server.stop(2.0)
#The logging call should try to connect, which should fail
# The logging call should try to connect, which should fail
try:
raise RuntimeError('Deliberate mistake')
except RuntimeError: