From: Michael W. Hudson Date: Mon, 20 Jun 2005 13:45:34 +0000 (+0000) Subject: test_asynchat is no longer expected to produce output. X-Git-Tag: v2.5a0~1673 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7390942aa16be9b894c31563ec9f2b502ed28338;p=thirdparty%2FPython%2Fcpython.git test_asynchat is no longer expected to produce output. also, wait for threads to finish before proceeding. --- diff --git a/Lib/test/output/test_asynchat b/Lib/test/output/test_asynchat deleted file mode 100644 index e2e67f3f9595..000000000000 --- a/Lib/test/output/test_asynchat +++ /dev/null @@ -1,3 +0,0 @@ -test_asynchat -Connected -Received: 'hello world' diff --git a/Lib/test/test_asynchat.py b/Lib/test/test_asynchat.py index d10e389a55c9..f93587acbef2 100644 --- a/Lib/test/test_asynchat.py +++ b/Lib/test/test_asynchat.py @@ -6,7 +6,7 @@ import unittest from test import test_support HOST = "127.0.0.1" -PORT = 54321 +PORT = 54322 class echo_server(threading.Thread): @@ -67,6 +67,7 @@ class TestAsynchat(unittest.TestCase): c.push("hello ") c.push("world\n") asyncore.loop() + s.join() self.assertEqual(c.contents, 'hello world') @@ -79,6 +80,7 @@ class TestAsynchat(unittest.TestCase): c.push("hello ") c.push("world\n") asyncore.loop() + s.join() self.assertEqual(c.contents, 'hello ')