mirror of
https://github.com/python/cpython.git
synced 2025-07-29 06:05:00 +00:00
Add new utility function, reap_children(), to test_support. This should
be called at the end of each test that spawns children (perhaps it should be called from regrtest instead?). This will hopefully prevent some of the unexplained failures in the buildbots (hppa and alpha) during tests that spawn children. The problems were not reproducible. There were many zombies that remained at the end of several tests. In the worst case, this shouldn't cause any more problems, though it may not help either. Time will tell.
This commit is contained in:
parent
10497c83ec
commit
b15ac3169d
14 changed files with 58 additions and 8 deletions
|
@ -6,7 +6,7 @@
|
|||
|
||||
import os
|
||||
import sys
|
||||
from test.test_support import TestSkipped
|
||||
from test.test_support import TestSkipped, reap_children
|
||||
from os import popen
|
||||
|
||||
# Test that command-lines get down as we expect.
|
||||
|
@ -35,5 +35,6 @@ def _test_commandline():
|
|||
def main():
|
||||
print "Test popen:"
|
||||
_test_commandline()
|
||||
reap_children()
|
||||
|
||||
main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue