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

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

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 0x0000022fea405ad8>, 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_find_module'>, 'nextitem': <App...rgs={...}>}>, 'item': <AppTestMethod 'test_find_module'>, 'nextitem': <AppTestMethod 'test_find_module_with_encoding'>}

    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 0x0000022fdd9e14b0>
hook = <_HookCaller 'pytest_runtest_teardown'>, methods = []
kwargs = {'__multicall__': <_MultiCall 0 results, 0 meths, kwargs={'item': <AppTestMethod 'test_find_module'>, 'nextitem': <App...rgs={...}>}>, 'item': <AppTestMethod 'test_find_module'>, 'nextitem': <AppTestMethod 'test_find_module_with_encoding'>}

    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_find_module'>, 'nextitem': <App...rgs={...}>}>, 'item': <AppTestMethod 'test_find_module'>, 'nextitem': <AppTestMethod 'test_find_module_with_encoding'>}

    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_find_module'>, 'nextitem': <AppTestMethod 'test_find_module_with_encoding'>, '__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 0x0000022fe8d1b740>
func = <bound method _MultiCall.execute of <_MultiCall 0 results, 0 meths, kwargs={'i...h_encoding'>, '__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 0x0000022fe79f1420>

    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 0x0000022fe79f1420>
func = <bound method _MultiCall.execute of <_MultiCall 0 results, 0 meths, kwargs={'i...h_encoding'>, '__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_find_module'>, 'nextitem': <AppTestMethod 'test_find_module_with_encoding'>, '__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 0x0000022fdf2b4320>
item = <AppTestMethod 'test_find_module'>

    @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 0x22fddeef920>:
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 0x22fe8f181f0>:
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 0x22fe54d8d40>:
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 0x22fdde24b80>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24bc0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde245e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24660>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24a60>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24c00>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde244c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24a80>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24c60>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24620>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde247e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24680>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24700>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde246c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde250e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25420>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25100>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24fa0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde252a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24b00>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24f00>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25120>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25160>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25140>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25340>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25440>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25040>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24dc0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde251c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe8f3c220>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde253c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25180>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25220>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde252c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde250a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24d60>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25380>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25240>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24ee0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe8f3c670>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24d80>:
E           <C object Array of Char {'nolength': True}  at 0x22fe8f3c400>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25060>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde250c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe8f3c6d0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde251e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24de0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24f20>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde253e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24ca0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25320>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24d20>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24da0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24e20>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24e40>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24d00>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24e60>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24f40>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24cc0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aabf90>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24f60>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aabc40>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25400>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25080>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25000>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde253a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde251a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24e80>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24ea0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde252e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25260>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25460>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aac490>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aac920>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aacc60>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24fc0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aac590>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25200>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25480>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aac710>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aacb80>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25280>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24ec0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24ce0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aac950>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25020>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aabc50>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aac730>:
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 0x22fdd6df6f0>:
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 0x22fdd6dce50>:
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 0x22fe3f24470>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24980>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25790>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25070>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25590>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24550>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24d90>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25020>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24d10>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24da0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f251c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25a00>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25840>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde257c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f251b0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25a80>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f26430>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25540>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25940>:
E           <C object Array of Char {'nolength': True}  at 0x22fe8f3c970>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25a40>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25ba0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde222e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21cc0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21d00>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21d60>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21fc0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe8f3c130>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25f10>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde220c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22380>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22200>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde23880>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aaceb0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde238a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde23d60>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24b20>:
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 0x22fdde256e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24700>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24610>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f248d0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24d00>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f250e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24bb0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f252a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24ea0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25be0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25740>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde254a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25920>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25b40>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25700>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde254e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25720>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24710>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24e60>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f257f0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24a20>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25910>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f243c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25b60>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25760>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f244d0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24fd0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f259c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25780>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24b30>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25960>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde257a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25b20>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24d40>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25820>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde257e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f24b70>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25610>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25cf0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25fa0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f247a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25980>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde259a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde254c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25ca0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25bc0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde258a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25800>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25500>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25560>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25b80>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25cd0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f26080>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25860>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25600>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25c90>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f266c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f26870>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25b00>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f26500>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde258c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde259c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25ac0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25880>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25050>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde258e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25640>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25900>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25a20>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25aa0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde255e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f254d0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f26010>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f26b70>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25660>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25580>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde25680>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21ca0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21f80>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21ec0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21ee0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22000>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f26b40>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21d20>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22460>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21fa0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21de0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21d40>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f26250>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21d80>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21f20>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f27740>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22020>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f26900>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21e40>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f25d40>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f26c80>:
E           <C object Array of Char {'nolength': True}  at 0x22fe3f27500>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22040>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22100>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22160>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde222a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22420>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21e00>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21f40>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22060>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22080>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21da0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21dc0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde223c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde220e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde220a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22140>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21e80>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22240>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21ea0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22180>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde221c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21f60>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde21e60>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22120>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde221e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22280>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aad100>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22320>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22340>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22220>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22300>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aac7c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aad0b0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde23b40>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aad3c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24640>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde246a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24c20>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde246e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24c40>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde244e0>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24540>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24720>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aacd00>:
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 0x22fdee2cb30>:
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 0x22fdde24780>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde24920>:
E           <C object Array of Char {'nolength': True}  at 0x22fe4aeb310>:
E           <C object Array of Char {'nolength': True}  at 0x22fdde22400>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a7d0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a6b0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a730>:
E           <C object Array of Char {'nolength': True}  at 0x22fe4aead70>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a5f0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe4aeb6b0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a670>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a6f0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a930>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a1d0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a270>:
E           <C object Array of Char {'nolength': True}  at 0x22fe4aeb510>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a770>:
E           <C object Array of Char {'nolength': True}  at 0x22fe8f3c0a0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a690>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a6d0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aad6c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a2f0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a4b0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a3b0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a4f0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a550>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a390>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a210>:
E           <C object Array of Char {'nolength': True}  at 0x22fe8f3c5b0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a790>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a5d0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe8f3c430>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a250>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a170>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a370>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aad370>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a870>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a430>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aade00>:
E           <C object Array of Char {'nolength': True}  at 0x22fe8f3c0d0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9acb0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9aa30>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9ac70>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9ac90>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9aa50>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9ad50>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9a990>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9ae10>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9aaf0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aae160>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9b010>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9b150>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9acf0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9ac50>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9ab30>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9ab50>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aad9c0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9ad30>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9adf0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9af50>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9ad90>:
E           <C object Array of Char {'nolength': True}  at 0x22fe8f3c1f0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aadca0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9afb0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5d9abb0>:
E           <C object Array of Char {'nolength': True}  at 0x22fe5aadb20>:
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 0x22fe4e92aa0>:
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 #2355+
test: pypy/module/imp/test/test_app.py::AppTestImpModule::()::test_find_module