From 8189ab85e3b53eed158998deb9d0fc15b83b70b2 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sun, 20 Mar 2011 17:35:32 +0100 Subject: Call reap_children() where appropriate --- Lib/test/test_pty.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Lib/test/test_pty.py') diff --git a/Lib/test/test_pty.py b/Lib/test/test_pty.py index 92039e44ed..c6fc5e7da7 100644 --- a/Lib/test/test_pty.py +++ b/Lib/test/test_pty.py @@ -1,4 +1,4 @@ -from test.support import verbose, run_unittest, import_module +from test.support import verbose, run_unittest, import_module, reap_children #Skip these tests if either fcntl or termios is not available fcntl = import_module('fcntl') @@ -195,7 +195,10 @@ class PtyTest(unittest.TestCase): # pty.fork() passed. def test_main(verbose=None): - run_unittest(PtyTest) + try: + run_unittest(PtyTest) + finally: + reap_children() if __name__ == "__main__": test_main() -- cgit v1.2.1