summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pty.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-03-20 16:35:32 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-03-20 16:35:32 (GMT)
commit8189ab85e3b53eed158998deb9d0fc15b83b70b2 (patch)
treeebecf37666d3d1fcbe0c9317d671356ac3d685a4 /Lib/test/test_pty.py
parent9c0d5eaa705ca3ebaab395cc59d24d3b9c0289f4 (diff)
downloadcpython-8189ab85e3b53eed158998deb9d0fc15b83b70b2.zip
cpython-8189ab85e3b53eed158998deb9d0fc15b83b70b2.tar.gz
cpython-8189ab85e3b53eed158998deb9d0fc15b83b70b2.tar.bz2
Call reap_children() where appropriate
Diffstat (limited to 'Lib/test/test_pty.py')
-rw-r--r--Lib/test/test_pty.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/Lib/test/test_pty.py b/Lib/test/test_pty.py
index 92039e4..c6fc5e7 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()