hpy_tests._vendored.hpy_devel.test_distutils.TestDistutils:test_hpymod_setup_install[universal]
self = <_vendored.hpy_devel.test_distutils.TestDistutils object at 0x00007fc440693cc8>
hpy_abi = 'universal'
def test_hpymod_setup_install(self, hpy_abi):
# check that we can install hpy modules with setup.py install
self.gen_setup_py("""
setup(name = "hpy_test_project",
hpy_ext_modules = [hpymod],
)
""")
> 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:279:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/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-28/test_hpymod_setup_install_univ0/venv/bin/python', 'setup.py', '--hpy-abi=universal', '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-28/test_hpymod_setup_install_univ0/venv/bin/python', 'setup.py', '--hpy-abi=universal', '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 #1321+
test: hpy_tests._vendored.hpy_devel.test_distutils.TestDistutils:test_hpymod_setup_install[universal]