diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-31 20:08:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-31 20:08:12 +0200 |
commit | 278c1e159c970da6cd6683d18c6211f5118674cc (patch) | |
tree | be6eb27edca136282245e7ce374a23ba05f25cf7 /Lib/test/test_builtin.py | |
parent | 400e1dbcad93061f1f7ab4735202daaa5e731507 (diff) | |
download | cpython-git-278c1e159c970da6cd6683d18c6211f5118674cc.tar.gz |
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
Diffstat (limited to 'Lib/test/test_builtin.py')
-rw-r--r-- | Lib/test/test_builtin.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py index 1e9012e7e5..86e5f1dc02 100644 --- a/Lib/test/test_builtin.py +++ b/Lib/test/test_builtin.py @@ -25,6 +25,7 @@ from itertools import product from textwrap import dedent from types import AsyncGeneratorType, FunctionType from operator import neg +from test import support from test.support import ( EnvironmentVarGuard, TESTFN, check_warnings, swap_attr, unlink, maybe_get_event_loop_policy) @@ -1890,7 +1891,7 @@ class PtyTests(unittest.TestCase): os.close(fd) # Wait until the child process completes - os.waitpid(pid, 0) + support.wait_process(pid, exitcode=0) return lines |