Partially revert changeset #281857369a78 to make sure threads are

reaped in all situations.
This commit is contained in:
Brett Cannon 2013-06-12 21:25:23 -04:00
parent c9a1bfed5d
commit e382b5868a

View file

@ -1079,5 +1079,15 @@ class UseBuiltinTypesTestCase(unittest.TestCase):
self.assertTrue(server.use_builtin_types)
@support.reap_threads
def test_main():
support.run_unittest(XMLRPCTestCase, HelperTestCase, DateTimeTestCase,
BinaryTestCase, FaultTestCase, UseBuiltinTypesTestCase,
SimpleServerTestCase, KeepaliveServerTestCase1,
KeepaliveServerTestCase2, GzipServerTestCase,
MultiPathServerTestCase, ServerProxyTestCase, FailingServerTestCase,
CGIHandlerTestCase)
if __name__ == "__main__":
support.reap_threads(unittest.main)()
test_main()