diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-31 18:08:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-31 18:08:12 (GMT) |
commit | 278c1e159c970da6cd6683d18c6211f5118674cc (patch) | |
tree | be6eb27edca136282245e7ce374a23ba05f25cf7 /Lib/test/fork_wait.py | |
parent | 400e1dbcad93061f1f7ab4735202daaa5e731507 (diff) | |
download | cpython-278c1e159c970da6cd6683d18c6211f5118674cc.zip cpython-278c1e159c970da6cd6683d18c6211f5118674cc.tar.gz cpython-278c1e159c970da6cd6683d18c6211f5118674cc.tar.bz2 |
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/fork_wait.py')
-rw-r--r-- | Lib/test/fork_wait.py | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/Lib/test/fork_wait.py b/Lib/test/fork_wait.py index f6bbffe..8c17755 100644 --- a/Lib/test/fork_wait.py +++ b/Lib/test/fork_wait.py @@ -44,16 +44,7 @@ class ForkWait(unittest.TestCase): pass def wait_impl(self, cpid): - for i in range(10): - # waitpid() shouldn't hang, but some of the buildbots seem to hang - # in the forking tests. This is an attempt to fix the problem. - spid, status = os.waitpid(cpid, os.WNOHANG) - if spid == cpid: - break - time.sleep(2 * SHORTSLEEP) - - self.assertEqual(spid, cpid) - self.assertEqual(status, 0, "cause = %d, exit = %d" % (status&0xff, status>>8)) + support.wait_process(cpid, exitcode=0) def test_wait(self): for i in range(NUM_THREADS): |