]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-40094: Add test.support.wait_process() (GH-19254)
authorVictor Stinner <vstinner@python.org>
Tue, 31 Mar 2020 18:08:12 +0000 (20:08 +0200)
committerGitHub <noreply@github.com>
Tue, 31 Mar 2020 18:08:12 +0000 (20:08 +0200)
commit278c1e159c970da6cd6683d18c6211f5118674cc
treebe6eb27edca136282245e7ce374a23ba05f25cf7
parent400e1dbcad93061f1f7ab4735202daaa5e731507
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
19 files changed:
Doc/library/test.rst
Lib/test/_test_multiprocessing.py
Lib/test/fork_wait.py
Lib/test/support/__init__.py
Lib/test/test_builtin.py
Lib/test/test_logging.py
Lib/test/test_mailbox.py
Lib/test/test_os.py
Lib/test/test_platform.py
Lib/test/test_posix.py
Lib/test/test_random.py
Lib/test/test_socketserver.py
Lib/test/test_ssl.py
Lib/test/test_subprocess.py
Lib/test/test_support.py
Lib/test/test_tempfile.py
Lib/test/test_tracemalloc.py
Lib/test/test_uuid.py
Misc/NEWS.d/next/Tests/2020-03-31-18-57-52.bpo-40094.m3fTJe.rst [new file with mode: 0644]