hpy_tests._vendored.hpy_devel.test_distutils.TestDistutils:test_hpymod_legacy[hybrid]
self = <_vendored.hpy_devel.test_distutils.TestDistutils object at 0x00007fa81d38a950>
hpy_abi = 'hybrid'
def test_hpymod_legacy(self, hpy_abi):
if hpy_abi == 'universal':
pytest.skip('only for cpython and hybrid ABIs')
self.gen_setup_py("""
setup(name = "hpy_test_project",
hpy_ext_modules = [hpymod_legacy],
install_requires = [],
)
""")
> self.python('setup.py', f"--hpy-abi={hpy_abi}", 'install')
/Users/matti/build-worker-x86_64/pypy-c-jit-macos-x86-64/build/extra_tests/hpy_tests/_vendored/hpy_devel/test_distutils.py:343:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/Users/matti/build-worker-x86_64/pypy-c-jit-macos-x86-64/build/extra_tests/hpy_tests/_vendored/hpy_devel/test_distutils.py:125: in python
proc.check_returncode()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = CompletedProcess(args=['/private/tmp/buildbot-x86_64/pytest-of-matti/pytest-14/test_hpymod_legacy_hybrid_0/venv/bin/python', 'setup.py', '--hpy-abi=hybrid', 'install'], returncode=1)
def check_returncode(self):
"""Raise CalledProcessError if the exit code is non-zero."""
if self.returncode:
> raise CalledProcessError(self.returncode, self.args, self.stdout,
self.stderr)
E subprocess.CalledProcessError: Command '['/private/tmp/buildbot-x86_64/pytest-of-matti/pytest-14/test_hpymod_legacy_hybrid_0/venv/bin/python', 'setup.py', '--hpy-abi=hybrid', 'install']' returned non-zero exit status 1.
/Users/matti/build-worker-x86_64/pypy-c-jit-macos-x86-64/build/lib-python/3/subprocess.py:502: CalledProcessError
builder: pypy-c-jit-macos-x86-64 build #1315+
test: hpy_tests._vendored.hpy_devel.test_distutils.TestDistutils:test_hpymod_legacy[hybrid]