summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-07-03 09:36:13 (GMT)
committerGitHub <noreply@github.com>2019-07-03 09:36:13 (GMT)
commit79665c698fb8f97475e03c4231067db1ae47addb (patch)
tree077dec24031677b7a1f1212e32ffe9b7d807dcac /Lib
parenta2a807f75dc162dfb45fb297aee4961de8008f84 (diff)
downloadcpython-79665c698fb8f97475e03c4231067db1ae47addb.zip
cpython-79665c698fb8f97475e03c4231067db1ae47addb.tar.gz
cpython-79665c698fb8f97475e03c4231067db1ae47addb.tar.bz2
bpo-37421: test_concurrent_futures cleans up multiprocessing (GH-14563)
test_concurrent_futures now cleans up multiprocessing to remove immediately temporary directories created by multiprocessing.util.get_temp_dir(). The test now uses setUpModule() and tearDownModule(). (cherry picked from commit 684cb47fffb7af3ac50cb077f6d2a095c9ce20b4) Co-authored-by: Victor Stinner <vstinner@redhat.com>
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_concurrent_futures.py29
1 files changed, 22 insertions, 7 deletions
diff --git a/Lib/test/test_concurrent_futures.py b/Lib/test/test_concurrent_futures.py
index b27ae71..fa29820 100644
--- a/Lib/test/test_concurrent_futures.py
+++ b/Lib/test/test_concurrent_futures.py
@@ -27,6 +27,9 @@ from concurrent.futures._base import (
from concurrent.futures.process import BrokenProcessPool
from multiprocessing import get_context
+import multiprocessing.process
+import multiprocessing.util
+
def create_future(state=PENDING, exception=None, result=None):
f = Future()
@@ -1294,12 +1297,24 @@ class FutureTests(BaseTestCase):
self.assertEqual(f.exception(), e)
-@test.support.reap_threads
-def test_main():
- try:
- test.support.run_unittest(__name__)
- finally:
- test.support.reap_children()
+_threads_key = None
+
+def setUpModule():
+ global _threads_key
+ _threads_key = test.support.threading_setup()
+
+
+def tearDownModule():
+ test.support.threading_cleanup(*_threads_key)
+ test.support.reap_children()
+
+ # cleanup multiprocessing
+ multiprocessing.process._cleanup()
+ # bpo-37421: Explicitly call _run_finalizers() to remove immediately
+ # temporary directories created by multiprocessing.util.get_temp_dir().
+ multiprocessing.util._run_finalizers()
+ test.support.gc_collect()
+
if __name__ == "__main__":
- test_main()
+ unittest.main()