Commit 3b4652e0 authored by Gregory P. Smith's avatar Gregory P. Smith

revert the test_main() change from 08daf3ef6509 so that regrtest continues to run this properly.

parent 6466a526
......@@ -1547,6 +1547,19 @@ class ContextManagerTests(ProcessTestCase):
raise c.exception
def test_main():
unit_tests = (ProcessTestCase,
POSIXProcessTestCase,
Win32ProcessTestCase,
ProcessTestCasePOSIXPurePython,
CommandTests,
ProcessTestCaseNoPoll,
HelperFunctionTests,
CommandsWithSpaces,
ContextManagerTests)
support.run_unittest(*unit_tests)
support.reap_children()
if __name__ == "__main__":
unittest.main()
support.reap_children()
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