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 0x0000023ff10ca7a0>, 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 0x0000023fe28c14b0>
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 0x0000023ff0f485e8>
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 0x0000023ff0fea2e0>

    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 0x0000023ff0fea2e0>
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 0x0000023fe4184120>
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 0x23fe2dcf1a0>:
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 0x23fedd58c40>:
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 0x23fe88c8460>:
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 0x23fe2d04780>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04980>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04840>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04ba0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d046a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04880>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04aa0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04ac0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04600>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d048a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d046e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04c00>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d045e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04b20>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04ae0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04c40>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04660>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d044c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d045c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec361650>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04680>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04bc0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04520>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04560>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04b00>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04700>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d047a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04fa0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d052c0>:
E           <C object Array of Char {'nolength': True}  at 0x23feacf6c50>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05200>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04de0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05260>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05280>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05480>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04d40>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04e00>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05420>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d052a0>:
E           <C object Array of Char {'nolength': True}  at 0x23feacf6da0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04e40>:
E           <C object Array of Char {'nolength': True}  at 0x23feacf6800>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d051c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d051e0>:
E           <C object Array of Char {'nolength': True}  at 0x23feacf6cb0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05000>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05020>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d050e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05240>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05140>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04cc0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05220>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05380>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05440>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04e60>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04fc0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04d00>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05060>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04f40>:
E           <C object Array of Char {'nolength': True}  at 0x23fec362380>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d052e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec362a70>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04fe0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04da0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05040>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04ee0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04d80>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05360>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04d60>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d053a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05080>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04ca0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec361f50>:
E           <C object Array of Char {'nolength': True}  at 0x23fec362580>:
E           <C object Array of Char {'nolength': True}  at 0x23fec362900>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d050c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec361e20>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d053c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d053e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec3632f0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec3624b0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05460>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04dc0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04d20>:
E           <C object Array of Char {'nolength': True}  at 0x23fec362b20>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05160>:
E           <C object Array of Char {'nolength': True}  at 0x23fec363180>:
E           <C object Array of Char {'nolength': True}  at 0x23fec3625a0>:
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 0x23feadf7fe0>:
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 0x23fe17b68c0>:
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 0x23febc0cc60>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c340>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0cbd0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0ca20>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0cf10>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0cb30>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c800>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c450>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0d270>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0d2c0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0d3d0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d058e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d059e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05740>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c4c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05600>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c050>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05a20>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05a80>:
E           <C object Array of Char {'nolength': True}  at 0x23feacf6d10>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05660>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05be0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05560>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d02ca0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03880>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d043e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04400>:
E           <C object Array of Char {'nolength': True}  at 0x23feacf64d0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec3628f0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04120>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04440>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04140>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04c20>:
E           <C object Array of Char {'nolength': True}  at 0x23fec363b00>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d044e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04be0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d047e0>:
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 0x23fe2d04e20>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c2a0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0cb50>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c440>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c560>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0cce0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c2e0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c7d0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c8f0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05100>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04e80>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04ec0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04ea0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05120>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05b40>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d056e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05880>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0d0c0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0d4c0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0cf40>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0d1f0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c700>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0cd90>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05620>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05720>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c5e0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0cd50>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0d690>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d054e0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c1f0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d059c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05840>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0cbe0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c220>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05540>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05a40>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c400>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0cdc0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0d7b0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0dad0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0c300>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d059a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05ba0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05ac0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0d260>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05800>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05b20>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d055e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d058a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05780>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d054a0>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0db90>:
E           <C object Array of Char {'nolength': True}  at 0x23febc0bea0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05580>:
E           <C object Array of Char {'nolength': True}  at 0x23fec361c30>:
E           <C object Array of Char {'nolength': True}  at 0x23fec362860>:
E           <C object Array of Char {'nolength': True}  at 0x23fec363240>:
E           <C object Array of Char {'nolength': True}  at 0x23fec363680>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05900>:
E           <C object Array of Char {'nolength': True}  at 0x23fec3636f0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05500>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d058c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05ae0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05b80>:
E           <C object Array of Char {'nolength': True}  at 0x23fec362f40>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05920>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05860>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05760>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05640>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05680>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05bc0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec3633f0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec363760>:
E           <C object Array of Char {'nolength': True}  at 0x23fec3632c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05940>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05aa0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05700>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05b60>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05b00>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d05960>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d055a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d057a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec362560>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03320>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d030e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04380>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04040>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d040a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec363910>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04360>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03d20>:
E           <C object Array of Char {'nolength': True}  at 0x23fec363e80>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04240>:
E           <C object Array of Char {'nolength': True}  at 0x23fec3624a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04460>:
E           <C object Array of Char {'nolength': True}  at 0x23fec364570>:
E           <C object Array of Char {'nolength': True}  at 0x23fec363ea0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec364080>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d041e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04420>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d040e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d042e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03d60>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03e00>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04180>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d042c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03ca0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03d40>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03cc0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03d00>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04080>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03e80>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03d80>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03fa0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03ea0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03f60>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03f40>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03dc0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03e40>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04100>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d042a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04060>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03f80>:
E           <C object Array of Char {'nolength': True}  at 0x23fec3643e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03ee0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03de0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d041a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d047c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec364ac0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec364a50>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04500>:
E           <C object Array of Char {'nolength': True}  at 0x23fec363350>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04620>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d046c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d048e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04b60>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04920>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04720>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04a40>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d048c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fec364df0>:
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 0x23fe7a66630>:
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 0x23fe2d04c80>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04a80>:
E           <C object Array of Char {'nolength': True}  at 0x23fe8cf6b40>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d02ee0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe16e83a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04540>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d04f00>:
E           <C object Array of Char {'nolength': True}  at 0x23fe8bd0c30>:
E           <C object Array of Char {'nolength': True}  at 0x23fe2d03fc0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe8bd00d0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b9e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b940>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b6a0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850ba60>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b620>:
E           <C object Array of Char {'nolength': True}  at 0x23fe8bd0280>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b660>:
E           <C object Array of Char {'nolength': True}  at 0x23feacf6e30>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850bb20>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b9c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe8bd0570>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b4c0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850baa0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b500>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850ba00>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850ba40>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b840>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850ba20>:
E           <C object Array of Char {'nolength': True}  at 0x23feacf6b60>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b800>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b7c0>:
E           <C object Array of Char {'nolength': True}  at 0x23feacf6c80>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b860>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b780>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b8e0>:
E           <C object Array of Char {'nolength': True}  at 0x23feb560af0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b6e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b720>:
E           <C object Array of Char {'nolength': True}  at 0x23feb560f80>:
E           <C object Array of Char {'nolength': True}  at 0x23feacf6d40>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b900>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b540>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b520>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850bb60>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850b5e0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850bbe0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850bd80>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850bf00>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850c0e0>:
E           <C object Array of Char {'nolength': True}  at 0x23feb5615d0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850bfe0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850bc20>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850c200>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850bd00>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850c220>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850bd20>:
E           <C object Array of Char {'nolength': True}  at 0x23feb561190>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850bfc0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850bf80>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850c240>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850c160>:
E           <C object Array of Char {'nolength': True}  at 0x23feacf6d70>:
E           <C object Array of Char {'nolength': True}  at 0x23feb561ab0>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850be60>:
E           <C object Array of Char {'nolength': True}  at 0x23fe850bde0>:
E           <C object Array of Char {'nolength': True}  at 0x23feb560ef0>:
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 0x23fea5f7190>:
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 #2349+
test: pypy/module/imp/test/test_app.py::AppTestImpModule::()::test_find_module