summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socketserver.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-03-31 18:08:12 (GMT)
committerGitHub <noreply@github.com>2020-03-31 18:08:12 (GMT)
commit278c1e159c970da6cd6683d18c6211f5118674cc (patch)
treebe6eb27edca136282245e7ce374a23ba05f25cf7 /Lib/test/test_socketserver.py
parent400e1dbcad93061f1f7ab4735202daaa5e731507 (diff)
downloadcpython-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/test_socketserver.py')
-rw-r--r--Lib/test/test_socketserver.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/test/test_socketserver.py b/Lib/test/test_socketserver.py
index 85382a0..f818df0 100644
--- a/Lib/test/test_socketserver.py
+++ b/Lib/test/test_socketserver.py
@@ -65,9 +65,7 @@ def simple_subprocess(testcase):
except:
raise
finally:
- pid2, status = os.waitpid(pid, 0)
- testcase.assertEqual(pid2, pid)
- testcase.assertEqual(72 << 8, status)
+ test.support.wait_process(pid, exitcode=72)
class SocketServerTest(unittest.TestCase):