Call reap_children() where appropriate
This commit is contained in:
parent
9c0d5eaa70
commit
8189ab85e3
|
@ -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):
|
||||
try:
|
||||
run_unittest(PtyTest)
|
||||
finally:
|
||||
reap_children()
|
||||
|
||||
if __name__ == "__main__":
|
||||
test_main()
|
||||
|
|
|
@ -484,9 +484,12 @@ class ItimerTest(unittest.TestCase):
|
|||
self.assertEqual(self.hndl_called, True)
|
||||
|
||||
def test_main():
|
||||
try:
|
||||
support.run_unittest(BasicSignalTests, InterProcessSignalTests,
|
||||
WakeupSignalTests, SiginterruptTest,
|
||||
ItimerTest, WindowsSignalTests)
|
||||
finally:
|
||||
support.reap_children()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in New Issue