Home - Summaries: (main) : (py3.11) : (py3.12) : Everything - Nightly builds - Benchmarks - RPython - Builders - About

pypy/module/imp/test/test_app.py::AppTestImpModule::()::test_load_module_pyc_2

self = <CallInfo when='teardown' exception: {

array [ '%', 'L', 'E', '\x00' ]:
    ...
  File "d:\pypy_stuff\buildbot64\slav...bot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\ctypefunc.py", line 523, in rawallocate
    flavor='raw')
}>
func = <function <lambda> at 0x000001bf128ea278>, when = 'teardown'

    def __init__(self, func, when):
        #: context of invocation: one of "setup", "call",
        #: "teardown", "memocollect"
        self.when = when
        self.start = time()
        try:
>           self.result = func()

..\_pytest\runner.py:150: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

>   return CallInfo(lambda: ihook(item=item, **kwds), when=when)

..\_pytest\runner.py:138: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <_HookCaller 'pytest_runtest_teardown'>
kwargs = {'__multicall__': <_MultiCall 0 results, 0 meths, kwargs={'item': <AppTestMethod 'test_load_module_pyc_2'>, 'nextitem'... kwargs={...}>}>, 'item': <AppTestMethod 'test_load_module_pyc_2'>, 'nextitem': <AppTestMethod 'test_load_broken_pyc'>}

    def __call__(self, **kwargs):
        assert not self.is_historic()
>       return self._hookexec(self, self._nonwrappers + self._wrappers, kwargs)

..\_pytest\vendored_packages\pluggy.py:724: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <_pytest.config.PytestPluginManager object at 0x000001bf08e733d0>
hook = <_HookCaller 'pytest_runtest_teardown'>, methods = []
kwargs = {'__multicall__': <_MultiCall 0 results, 0 meths, kwargs={'item': <AppTestMethod 'test_load_module_pyc_2'>, 'nextitem'... kwargs={...}>}>, 'item': <AppTestMethod 'test_load_module_pyc_2'>, 'nextitem': <AppTestMethod 'test_load_broken_pyc'>}

    def _hookexec(self, hook, methods, kwargs):
        # called from all hookcaller instances.
        # enable_tracing will set its own wrapping function at self._inner_hookexec
>       return self._inner_hookexec(hook, methods, kwargs)

..\_pytest\vendored_packages\pluggy.py:338: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

hook = <_HookCaller 'pytest_runtest_teardown'>, methods = []
kwargs = {'__multicall__': <_MultiCall 0 results, 0 meths, kwargs={'item': <AppTestMethod 'test_load_module_pyc_2'>, 'nextitem'... kwargs={...}>}>, 'item': <AppTestMethod 'test_load_module_pyc_2'>, 'nextitem': <AppTestMethod 'test_load_broken_pyc'>}

    self._inner_hookexec = lambda hook, methods, kwargs: \
>       _MultiCall(methods, kwargs, hook.spec_opts).execute()

..\_pytest\vendored_packages\pluggy.py:333: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <_MultiCall 0 results, 0 meths, kwargs={'item': <AppTestMethod 'test_load_module_pyc_2'>, 'nextitem': <AppTestMethod 'test_load_broken_pyc'>, '__multicall__': <_MultiCall 0 results, 0 meths, kwargs={...}>}>

    def execute(self):
        all_kwargs = self.kwargs
        self.results = results = []
        firstresult = self.specopts.get("firstresult")
    
        while self.hook_impls:
            hook_impl = self.hook_impls.pop()
            args = [all_kwargs[argname] for argname in hook_impl.argnames]
            if hook_impl.hookwrapper:
>               return _wrapped_call(hook_impl.function(*args), self.execute)

..\_pytest\vendored_packages\pluggy.py:595: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

wrap_controller = <generator object pytest_runtest_teardown at 0x000001bf11f79768>
func = <bound method _MultiCall.execute of <_MultiCall 0 results, 0 meths, kwargs={'i...broken_pyc'>, '__multicall__': <_MultiCall 0 results, 0 meths, kwargs={...}>}>>

    def _wrapped_call(wrap_controller, func):
        """ Wrap calling to a function with a generator which needs to yield
        exactly once.  The yield point will trigger calling the wrapped function
        and return its _CallOutcome to the yield point.  The generator then needs
        to finish (raise StopIteration) in order for the wrapped call to complete.
        """
        try:
            next(wrap_controller)   # first yield
        except StopIteration:
            _raise_wrapfail(wrap_controller, "did not yield")
        call_outcome = _CallOutcome(func)
        try:
            wrap_controller.send(call_outcome)
            _raise_wrapfail(wrap_controller, "has second yield")
        except StopIteration:
            pass
>       return call_outcome.get_result()

..\_pytest\vendored_packages\pluggy.py:253: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <_pytest.vendored_packages.pluggy._CallOutcome instance at 0x000001bf1396b6a0>

    def get_result(self):
        if self.excinfo is None:
            return self.result
        else:
            ex = self.excinfo
            if _py3:
                raise ex[1].with_traceback(ex[2])
>           _reraise(*ex)  # noqa

..\_pytest\vendored_packages\pluggy.py:279: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <_pytest.vendored_packages.pluggy._CallOutcome instance at 0x000001bf1396b6a0>
func = <bound method _MultiCall.execute of <_MultiCall 0 results, 0 meths, kwargs={'i...broken_pyc'>, '__multicall__': <_MultiCall 0 results, 0 meths, kwargs={...}>}>>

    def __init__(self, func):
        try:
>           self.result = func()

..\_pytest\vendored_packages\pluggy.py:264: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <_MultiCall 0 results, 0 meths, kwargs={'item': <AppTestMethod 'test_load_module_pyc_2'>, 'nextitem': <AppTestMethod 'test_load_broken_pyc'>, '__multicall__': <_MultiCall 0 results, 0 meths, kwargs={...}>}>

    def execute(self):
        all_kwargs = self.kwargs
        self.results = results = []
        firstresult = self.specopts.get("firstresult")
    
        while self.hook_impls:
            hook_impl = self.hook_impls.pop()
            args = [all_kwargs[argname] for argname in hook_impl.argnames]
            if hook_impl.hookwrapper:
                return _wrapped_call(hook_impl.function(*args), self.execute)
>           res = hook_impl.function(*args)

..\_pytest\vendored_packages\pluggy.py:596: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <rpython.conftest.LeakFinder instance at 0x000001bf0a5d78a0>
item = <AppTestMethod 'test_load_module_pyc_2'>

    @pytest.hookimpl(trylast=True)
    def pytest_runtest_teardown(self, item):
        if not isinstance(item, py.test.collect.Function):
            return
        if (not getattr(item.obj, 'dont_track_allocations', False)
            and leakfinder.TRACK_ALLOCATIONS):
            kwds = {}
            try:
                kwds['do_collection'] = item.track_allocations_collect
            except AttributeError:
                pass
            item._pypytest_leaks = leakfinder.stop_tracking_allocations(False,
                                                                        **kwds)
        else:            # stop_tracking_allocations() already called
            item._pypytest_leaks = None
    
        # check for leaks, but only if the test passed so far
        if getattr(item, '_success', False) and item._pypytest_leaks:
>           raise leakfinder.MallocMismatch(item._pypytest_leaks)
E           MallocMismatch: {
E           
E           array [ '%', 'L', 'E', '\x00' ]:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdataobj.py", line 13, in <module>
E               from pypy.module._cffi_backend import misc
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\misc.py", line 125, in <module>
E               FORMAT_LONGDOUBLE = rffi.str2charp("%LE")
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\rpython\rtyper\lltypesystem\rffi.py", line 821, in str2charp
E               array = lltype.malloc(TYPEP.TO, len(s) + 1, flavor='raw', track_allocation=True)
E           
E           <C object Struct cffi_ctxobj { ctx, info } at 0x1bf09357ca0>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\ffi_obj.py", line 738, in make_plain_ffi_object
E               r.__init__(space, src_ctx)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\ffi_obj.py", line 59, in __init__
E               self.ctxobj = parse_c_type.allocate_ctxobj(src_ctx)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\parse_c_type.py", line 71, in allocate_ctxobj
E               p = lltype.malloc(CTXOBJ, flavor='raw', zero=True)
E           
E           <C object Array of Char {'nolength': True}  at 0x1bf15f0c3d0>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 131, in ffiobj_init
E               ntypes = allocate_array(ffi, _CFFI_OPCODE_T, n)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 109, in allocate_array
E               p = allocate(ffi, nitems * nbytes)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 102, in allocate
E               p = lltype.malloc(rffi.CCHARP.TO, nbytes, flavor='raw', zero=True)
E           
E           <C object Array of Char {'nolength': True}  at 0x1bf13cd10f0>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\ffi_obj.py", line 191, in descr_init
E               w__typenames, w__includes)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 146, in ffiobj_init
E               p = allocate(ffi, size)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 102, in allocate
E               p = lltype.malloc(rffi.CCHARP.TO, nbytes, flavor='raw', zero=True)
E           
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4ec0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4ee0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4f20>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4f60>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4f40>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b50a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4fc0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4d80>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4da0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b50c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b51a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5280>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5120>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5260>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4fa0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b51c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5240>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4ba0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b52c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf13761430>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4fe0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4be0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4d00>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5600>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b56e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b55a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5700>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b58e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b57e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf12077df0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5a60>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b56a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b59e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5a40>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5880>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5800>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b58a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b53a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b58c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf12077eb0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5960>:
E           <C object Array of Char {'nolength': True}  at 0x1bf120777f0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5500>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5900>:
E           <C object Array of Char {'nolength': True}  at 0x1bf12078120>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5a80>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5820>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5940>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5980>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b59a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5720>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b55c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5620>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b53c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b54a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5840>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5340>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5440>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b54c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147b3e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5920>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147acb0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5360>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5520>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b55e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5540>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5780>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b53e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b56c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5560>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5400>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5420>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147a710>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147b110>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147b2c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5a00>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147b010>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5660>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5760>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147ad30>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147afa0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1de0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1d20>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2200>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147b510>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2120>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147ab60>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147b350>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 153, in ffiobj_init
E               nglobs[i].c_name = decoder.next_name()
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 92, in next_name
E               p = rffi.str2charp(self.string[frm : i])
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\rpython\rtyper\lltypesystem\rffi.py", line 821, in str2charp
E               array = lltype.malloc(TYPEP.TO, len(s) + 1, flavor='raw', track_allocation=True)
E           
E           <C object Array of Char {'nolength': True}  at 0x1bf0f7cac80>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 174, in ffiobj_init
E               nstructs = allocate_array(ffi, STRUCT_UNION_S, n)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 109, in allocate_array
E               p = allocate(ffi, nitems * nbytes)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 102, in allocate
E               p = lltype.malloc(rffi.CCHARP.TO, nbytes, flavor='raw', zero=True)
E           
E           <C object Array of Char {'nolength': True}  at 0x1bf0acfcd00>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 175, in ffiobj_init
E               nfields = allocate_array(ffi, FIELD_S, nftot)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 109, in allocate_array
E               p = allocate(ffi, nitems * nbytes)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 102, in allocate
E               p = lltype.malloc(rffi.CCHARP.TO, nbytes, flavor='raw', zero=True)
E           
E           <C object Array of Char {'nolength': True}  at 0x1bf0f443f70>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0f4442e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbbd0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcb9c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcb930>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbae0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc8810>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc84c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcc120>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcc180>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbc70>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1e80>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b20e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b22a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc9740>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2060>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc8d80>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2020>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1f40>:
E           <C object Array of Char {'nolength': True}  at 0x1bf145888a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1ba0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1f60>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1be0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b33c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4800>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4660>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4920>:
E           <C object Array of Char {'nolength': True}  at 0x1bf14588cf0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fca820>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b43c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b46e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b50e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4c40>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcb190>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4dc0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4c60>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4b40>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 185, in ffiobj_init
E               nstructs[i].c_name = decoder.next_name()
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 92, in next_name
E               p = rffi.str2charp(self.string[frm : i])
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\rpython\rtyper\lltypesystem\rffi.py", line 821, in str2charp
E               array = lltype.malloc(TYPEP.TO, len(s) + 1, flavor='raw', track_allocation=True)
E           
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1f00>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0f444eb0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0f444900>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0f444d30>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0f444730>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbb90>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbc90>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbb20>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbfa0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b21a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2180>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1fc0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2040>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2100>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2220>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b22e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2280>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbfe0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcc330>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcba90>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbf60>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc8a90>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbee0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b20c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2260>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc8480>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbc00>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcc310>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1bc0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcba40>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2160>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1ea0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc8510>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbd80>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1fa0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2140>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc9300>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcc000>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc8650>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc8ca0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc9370>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b21c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b22c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2300>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc8620>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1d80>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2000>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1e20>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1f20>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1d00>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1d60>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc8a50>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc92d0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1e00>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcb940>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc8970>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc93e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc9790>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b21e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc9230>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1c20>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2320>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1e40>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1e60>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbd40>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1c00>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1fe0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1b40>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1ec0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1b60>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1b80>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc9260>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc98c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcbc40>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1ee0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1f80>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1dc0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b2080>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1c60>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b1c80>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b3340>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b33a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc9530>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b41c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4300>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4820>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b46a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4b00>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fca0b0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4b20>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b43a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc9dd0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4a60>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fca5d0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b48a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fca280>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc99d0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc9de0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b48e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4700>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b47a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b45e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4400>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4420>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4440>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b44c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4460>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4880>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4900>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b44a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4980>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4540>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4500>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b47c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b48c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4560>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4760>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b45a0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4a80>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b49c0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4f80>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b52e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5060>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc9dc0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b51e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5000>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4ca0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5040>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcb310>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fca690>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4cc0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fc9d40>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5020>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5140>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5080>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5220>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4e20>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4c80>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4bc0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4c00>:
E           <C object Array of Char {'nolength': True}  at 0x1bf11fcb370>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 209, in ffiobj_init
E               nfields[nf].c_name = decoder.next_name()
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 92, in next_name
E               p = rffi.str2charp(self.string[frm : i])
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\rpython\rtyper\lltypesystem\rffi.py", line 821, in str2charp
E               array = lltype.malloc(TYPEP.TO, len(s) + 1, flavor='raw', track_allocation=True)
E           
E           <C object Array of Char {'nolength': True}  at 0x1bf126e22e0>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 235, in ffiobj_init
E               ntypenames = allocate_array(ffi, TYPENAME_S, n)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 109, in allocate_array
E               p = allocate(ffi, nitems * nbytes)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 102, in allocate
E               p = lltype.malloc(rffi.CCHARP.TO, nbytes, flavor='raw', zero=True)
E           
E           <C object Array of Char {'nolength': True}  at 0x1bf092b4e00>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b5640>:
E           <C object Array of Char {'nolength': True}  at 0x1bf10905400>:
E           <C object Array of Char {'nolength': True}  at 0x1bf092b49e0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c670>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c070>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c690>:
E           <C object Array of Char {'nolength': True}  at 0x1bf10905650>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c3d0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf10905bd0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c130>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c430>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c050>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c0d0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c370>:
E           <C object Array of Char {'nolength': True}  at 0x1bf10904e70>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c630>:
E           <C object Array of Char {'nolength': True}  at 0x1bf145891d0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c530>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c590>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147bd40>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c470>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c110>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c5b0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c310>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41bf50>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c150>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41cc10>:
E           <C object Array of Char {'nolength': True}  at 0x1bf14588b10>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41cb70>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41ce50>:
E           <C object Array of Char {'nolength': True}  at 0x1bf145888d0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c850>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41cc50>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41ce30>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147be30>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c910>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c8d0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147b830>:
E           <C object Array of Char {'nolength': True}  at 0x1bf14589080>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41cd90>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41cc90>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41cb90>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41cad0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c790>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41cd70>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c730>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41cc30>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41cb30>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147be10>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c7f0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c9f0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c7d0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c930>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41ced0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c9b0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147b990>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41ce10>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c8b0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41c9d0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41d490>:
E           <C object Array of Char {'nolength': True}  at 0x1bf14588d20>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147c280>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41d5d0>:
E           <C object Array of Char {'nolength': True}  at 0x1bf0d41d530>:
E           <C object Array of Char {'nolength': True}  at 0x1bf1147b760>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 239, in ffiobj_init
E               ntypenames[i].c_name = decoder.next_name()
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\cdlopen.py", line 92, in next_name
E               p = rffi.str2charp(self.string[frm : i])
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\rpython\rtyper\lltypesystem\rffi.py", line 821, in str2charp
E               array = lltype.malloc(TYPEP.TO, len(s) + 1, flavor='raw', track_allocation=True)
E           
E           <C object Struct CIF_DESCRIPTION { cif, abi, nargs, rtype, atypes, exchange_size, exchange_result, exchange_args } at 0x1bf11fa9430>:
E               ...
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\newtype.py", line 752, in _build_function_type
E               fct = ctypefunc.W_CTypeFunc(space, fargs, fresult, ellipsis, abi)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\ctypefunc.py", line 53, in __init__
E               builder.rawallocate(self)
E             File "d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\_cffi_backend\ctypefunc.py", line 523, in rawallocate
E               flavor='raw')
E           }

..\rpython\conftest.py:103: MallocMismatch
builder: own-win-x86-64 build #2316+
test: pypy/module/imp/test/test_app.py::AppTestImpModule::()::test_load_module_pyc_2