From e82cdae58faf838ff8f81cf6b20edc6efcb9825e Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Thu, 15 Jan 2009 14:54:37 +0000 Subject: [PATCH] Issue #4397. Fix occasional test_socket failure on OS X. --- Lib/test/test_socket.py | 4 ++++ Misc/NEWS | 2 ++ 2 files changed, 6 insertions(+) diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 1287dd102c..eaf9bcba19 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -584,6 +584,10 @@ class BasicTCPTest(SocketConnectedTest): # Testing shutdown() msg = self.cli_conn.recv(1024) self.assertEqual(msg, MSG) + # wait for _testShutdown to finish: on OS X, when the server + # closes the connection the client also becomes disconnected, + # and the client's shutdown call will fail. (Issue #4937.) + self.done.wait() def _testShutdown(self): self.serv_conn.send(MSG) diff --git a/Misc/NEWS b/Misc/NEWS index 9ced73d54d..96d40a9381 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -357,6 +357,8 @@ C-API Extension Modules ----------------- +- Issue #4937: Fix occasional test_socket failure on OS X. + - Issue #4279: Fix build of parsermodule under Cygwin. - Issue #4051: Prevent conflict of UNICODE macros in cPickle. -- 2.50.1