Commit 71b9ef86 authored by Brett Cannon's avatar Brett Cannon

Partially revert changeset #281857369a78 to make sure threads are

reaped in all situations.
parent 28dcb051
...@@ -1079,5 +1079,15 @@ class UseBuiltinTypesTestCase(unittest.TestCase): ...@@ -1079,5 +1079,15 @@ class UseBuiltinTypesTestCase(unittest.TestCase):
self.assertTrue(server.use_builtin_types) 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__": if __name__ == "__main__":
support.reap_threads(unittest.main)() test_main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment