diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-01-15 14:54:37 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-01-15 14:54:37 (GMT) |
commit | e82cdae58faf838ff8f81cf6b20edc6efcb9825e (patch) | |
tree | aeba58818ed98c557363b8b75b683bb8ee16c0ae /Lib/test/test_socket.py | |
parent | 8adc0b54d4f995ff739967fdc70d6a6e53ac1f90 (diff) | |
download | cpython-e82cdae58faf838ff8f81cf6b20edc6efcb9825e.zip cpython-e82cdae58faf838ff8f81cf6b20edc6efcb9825e.tar.gz cpython-e82cdae58faf838ff8f81cf6b20edc6efcb9825e.tar.bz2 |
Issue #4397. Fix occasional test_socket failure on OS X.
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r-- | Lib/test/test_socket.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 1287dd1..eaf9bcb 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) |