From: Victor Stinner <victor.stinner@gmail.com> Date: Fri, 28 Jul 2017 16:00:22 +0000 (+0200) Subject: bpo-31067: test_subprocess calls reap_children() (#2931) X-Git-Tag: v3.7.0a1~349 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cc42c121eb5346f673247f95dac575aadb77d66c;p=python bpo-31067: test_subprocess calls reap_children() (#2931) test_subprocess now also calls reap_children() in tearDown(), not only on setUp(). --- diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 4052c5ef52..a99976aa56 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -56,6 +56,8 @@ class BaseTestCase(unittest.TestCase): inst.wait() subprocess._cleanup() self.assertFalse(subprocess._active, "subprocess._active not empty") + self.doCleanups() + support.reap_children() def assertStderrEqual(self, stderr, expected, msg=None): # In a debug build, stuff like "[6580 refs]" is printed to stderr at