test_asyncore: wait explicitly for a thread termination (this dangling thread

could be the cause of a random failure).
This commit is contained in:
Charles-François Natali 2013-01-13 13:56:52 +01:00
parent 74fe9f307d
commit ce1519d250
1 changed files with 1 additions and 0 deletions

View File

@ -738,6 +738,7 @@ class BaseTestAPI(unittest.TestCase):
server = TCPServer()
t = threading.Thread(target=lambda: asyncore.loop(timeout=0.1, count=500))
t.start()
self.addCleanup(t.join)
for x in range(20):
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)