From da201fa2481a54d9a05c6b3870d4dba52d6b62f0 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sun, 21 Oct 2012 17:18:27 +0200 Subject: [PATCH] Try to fix issue #16264 (test_logging failure on some buildbots). --- Lib/test/test_logging.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 1d93b47a387..92514533d95 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -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: