From 278c1e159c970da6cd6683d18c6211f5118674cc Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 31 Mar 2020 20:08:12 +0200 Subject: bpo-40094: Add test.support.wait_process() (GH-19254) Moreover, the following tests now check the child process exit code: * test_os.PtyTests * test_mailbox.test_lock_conflict() * test_tempfile.test_process_awareness() * test_uuid.testIssue8621() * multiprocessing resource tracker tests --- Lib/test/_test_multiprocessing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/_test_multiprocessing.py') diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py index 4a87b1761f9..d00e928c177 100644 --- a/Lib/test/_test_multiprocessing.py +++ b/Lib/test/_test_multiprocessing.py @@ -5124,7 +5124,7 @@ class TestResourceTracker(unittest.TestCase): pid = _resource_tracker._pid if pid is not None: os.kill(pid, signal.SIGKILL) - os.waitpid(pid, 0) + support.wait_process(pid, exitcode=-signal.SIGKILL) with warnings.catch_warnings(): warnings.simplefilter("ignore") _resource_tracker.ensure_running() -- cgit v1.2.3