cffi_tests.cffi0.test_zintegration.TestZIntegration:test_distutils_package_2
self = <extra_tests.cffi_tests.cffi0.test_zintegration.TestZIntegration object at 0x00007f90bae45f68>
def test_distutils_package_2(self):
> run_setup_and_program("distutils_package_2", '''
import snip_basic_verify2
p = snip_basic_verify2.C.getpwuid(0)
assert snip_basic_verify2.ffi.string(p.pw_name) == b"root"
''')
../build/extra_tests/cffi_tests/cffi0/test_zintegration.py:150:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
../build/extra_tests/cffi_tests/cffi0/test_zintegration.py:109: in run_setup_and_program
venv_dir = create_venv(dirname + '-cpy')
../build/extra_tests/cffi_tests/cffi0/test_zintegration.py:26: in create_venv
str(tmpdir)])
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
popenargs = (['virtualenv', '-p', '/Users/matti/build-worker-x86_64/pypy-c-jit-macos-x86-64/venv/pypy-venv/bin/pypy', '/tmp/buildbot-x86_64/ffi-0/distutils_package_2-cpy'],)
kwargs = {}, retcode = 1
cmd = ['virtualenv', '-p', '/Users/matti/build-worker-x86_64/pypy-c-jit-macos-x86-64/venv/pypy-venv/bin/pypy', '/tmp/buildbot-x86_64/ffi-0/distutils_package_2-cpy']
def check_call(*popenargs, **kwargs):
"""Run command with arguments. Wait for command to complete. If
the exit code was zero then return, otherwise raise
CalledProcessError. The CalledProcessError object will have the
return code in the returncode attribute.
The arguments are the same as for the Popen constructor. Example:
check_call(["ls", "-l"])
"""
retcode = call(*popenargs, **kwargs)
if retcode:
cmd = kwargs.get("args")
if cmd is None:
cmd = popenargs[0]
> raise CalledProcessError(retcode, cmd)
E CalledProcessError: Command '['virtualenv', '-p', '/Users/matti/build-worker-x86_64/pypy-c-jit-macos-x86-64/venv/pypy-venv/bin/pypy', '/tmp/buildbot-x86_64/ffi-0/distutils_package_2-cpy']' returned non-zero exit status 1
../build/lib-python/2.7/subprocess.py:190: CalledProcessError
builder: pypy-c-jit-macos-x86-64 build #1279+
test: cffi_tests.cffi0.test_zintegration.TestZIntegration:test_distutils_package_2