Commit 3ca9f50f authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

bpo-31160: test_builtin: don't check waitpid() status (#3050)

parent da5e9301
...@@ -1569,8 +1569,8 @@ class PtyTests(unittest.TestCase): ...@@ -1569,8 +1569,8 @@ class PtyTests(unittest.TestCase):
% (len(lines), child_output)) % (len(lines), child_output))
os.close(fd) os.close(fd)
pid, status = os.waitpid(pid, 0) # Wait until the child process completes
self.assertEqual(status, 0) os.waitpid(pid, 0)
return lines return lines
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment