pypy/module/posix/test/test_posix2.py::AppTestPosix::()::test_fork
self = <pypy.interpreter.typedef.W_ObjectObjectUserDictWeakrefable object at 0x0000000162796950>
def test_fork(self):
os = self.posix
pid = os.fork()
if pid == 0: # child
os._exit(4)
pid1, status1 = os.waitpid(pid, 0)
assert pid1 == pid
> assert os.WIFEXITED(status1)
E (application-level) AssertionError
[/Users/matti/build-worker-arm64/own-macos-arm64/build/pypy/module/posix/test/test_posix2.py:531]:8: AssertionError
builder: own-macos-arm64 build #1333+
test: pypy/module/posix/test/test_posix2.py::AppTestPosix::()::test_fork