commit | 68c9592d3306ea12d249ecdbc5ee837b10f3ea12 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sun Mar 20 17:33:57 2011 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sun Mar 20 17:33:57 2011 +0100 |
tree | 8c857db81e77ac668724e9448240739056672f8d | |
parent | dedf6cf387eecf81d90bfe942cfb3b0834963bbd [diff] [blame] |
Call reap_children() at the end of test_posix
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index 5373292..0e9ac75 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py
@@ -780,7 +780,10 @@ def test_main(): - support.run_unittest(PosixTester, PosixGroupsTester) + try: + support.run_unittest(PosixTester, PosixGroupsTester) + finally: + support.reap_children() if __name__ == '__main__': test_main()