Home - Summaries: (main) : (py3.11) : 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 0x000001f878bafad8>, 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 0x000001f866da1440>
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 0x000001f878a6e408>
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 0x000001f878ba6520>

    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 0x000001f878ba6520>
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 0x000001f868614da0>
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 0x1f8668e5320>:
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 0x1f8729fc980>:
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 0x1f870f90e50>:
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 0x1f8671e5bf0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e59b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5c70>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e59f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5a30>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5e10>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5a70>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5b90>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5bb0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5e30>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5cb0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5ab0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2750>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2630>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e27b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2450>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2290>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2330>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2350>:
E           <C object Array of Char {'nolength': True}  at 0x1f86930e890>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2370>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e24f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2530>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2390>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2510>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e24b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e21f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2770>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2550>:
E           <C object Array of Char {'nolength': True}  at 0x1f86d45c500>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e25b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2790>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2670>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e23d0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2090>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e23f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2650>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2610>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2410>:
E           <C object Array of Char {'nolength': True}  at 0x1f86d45c1a0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2190>:
E           <C object Array of Char {'nolength': True}  at 0x1f86d45bc00>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2470>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2490>:
E           <C object Array of Char {'nolength': True}  at 0x1f86d45c110>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e23b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e26b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2430>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2050>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e22f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2570>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2590>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e1ff0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2230>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e20d0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e21b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2130>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2030>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e24d0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86930ebc0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2070>:
E           <C object Array of Char {'nolength': True}  at 0x1f86930e580>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2010>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e26d0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2690>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2730>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e3870>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e3c70>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e3a10>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e3ab0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4650>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4c50>:
E           <C object Array of Char {'nolength': True}  at 0x1f86930ee10>:
E           <C object Array of Char {'nolength': True}  at 0x1f86930f0c0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86930f370>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4c70>:
E           <C object Array of Char {'nolength': True}  at 0x1f86930ee40>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4850>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4cb0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86930e4f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86930ec10>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4cd0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4c90>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4d10>:
E           <C object Array of Char {'nolength': True}  at 0x1f86930f240>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4f90>:
E           <C object Array of Char {'nolength': True}  at 0x1f86930e4c0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86930f230>:
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 0x1f86be19d10>:
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 0x1f868053ff0>:
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 0x1f86f4a6ff0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49ed40>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f8d0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f2d0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49ee10>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49fd00>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f240>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f390>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49fee0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49fd80>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49ff50>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4e70>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4dd0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4d90>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a0180>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4910>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a0520>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e48b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4b50>:
E           <C object Array of Char {'nolength': True}  at 0x1f86d45c5c0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5270>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e51f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e54d0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5350>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5110>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5550>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5590>:
E           <C object Array of Char {'nolength': True}  at 0x1f86d45c0b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a1bb0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e52f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5490>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5c50>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5e50>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a2270>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5a50>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5d50>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e21d0>:
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 0x1f8671e4f10>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49efd0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f700>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49eff0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f220>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f2e0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49edf0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f210>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f4f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4e90>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4bb0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4d70>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4f50>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4db0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4e50>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4930>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4e30>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49fbc0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49ef50>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49fb20>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49fde0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f650>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49fbd0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4a30>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4810>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f2b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49fa50>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49ef00>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4b90>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f790>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4d30>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4b30>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f070>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a02b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4870>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4ed0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a0430>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a0870>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f840>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a0050>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a0700>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e49f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4df0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4eb0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49ee70>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4e10>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4a50>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4ef0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4ad0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4950>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4990>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a0210>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a05c0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4fb0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a0a40>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49f800>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a04b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a0c10>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e48d0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a0d30>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4970>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e49d0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e50b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e50f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a0610>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5230>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5670>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e51d0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5130>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5430>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5210>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a11b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a1140>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f49fd50>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e57b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5730>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5570>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5330>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4ff0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e54b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e54f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5010>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a1170>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5510>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5370>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5290>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5530>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5250>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a02c0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5690>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5310>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a17f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e55b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a09c0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5390>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a15b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a1080>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a1470>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5050>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e55f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e53b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e50d0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5410>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5450>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5150>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5190>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5770>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e4fd0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5070>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e51b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5470>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e55d0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5630>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e53d0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5650>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e56f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5a10>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5890>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5810>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e58b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5930>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5b10>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5bd0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a0560>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5990>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5b30>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5cf0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5d90>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a2070>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a2610>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5cd0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a2460>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5b70>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5eb0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e57f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e26f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e20b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2110>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e20f0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e2150>:
E           <C object Array of Char {'nolength': True}  at 0x1f86f4a2410>:
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 0x1f86b30bb00>:
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 0x1f8671e22b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e3a30>:
E           <C object Array of Char {'nolength': True}  at 0x1f867297af0>:
E           <C object Array of Char {'nolength': True}  at 0x1f8671e5030>:
E           <C object Array of Char {'nolength': True}  at 0x1f865b985b0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5df40>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5dc80>:
E           <C object Array of Char {'nolength': True}  at 0x1f86729b640>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5df60>:
E           <C object Array of Char {'nolength': True}  at 0x1f867297780>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e100>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5dc00>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5da60>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5dce0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5dc20>:
E           <C object Array of Char {'nolength': True}  at 0x1f86729b440>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5db20>:
E           <C object Array of Char {'nolength': True}  at 0x1f86d45bff0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5dfc0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5db40>:
E           <C object Array of Char {'nolength': True}  at 0x1f867297c60>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5dbc0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5ddc0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5de80>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5dba0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5dae0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5de60>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e160>:
E           <C object Array of Char {'nolength': True}  at 0x1f86d45bc30>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e0c0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5dcc0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86d45c020>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5dac0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5dc40>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5dfe0>:
E           <C object Array of Char {'nolength': True}  at 0x1f867297f10>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e060>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e1e0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86729b650>:
E           <C object Array of Char {'nolength': True}  at 0x1f86d45c050>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e420>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e780>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e800>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e680>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e620>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e300>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e4e0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e320>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e8e0>:
E           <C object Array of Char {'nolength': True}  at 0x1f867297970>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e5a0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e840>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e7e0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e340>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e9c0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e920>:
E           <C object Array of Char {'nolength': True}  at 0x1f867298920>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e720>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e3e0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e9e0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e4c0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86d45ba80>:
E           <C object Array of Char {'nolength': True}  at 0x1f867298c10>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e6e0>:
E           <C object Array of Char {'nolength': True}  at 0x1f86eb5e400>:
E           <C object Array of Char {'nolength': True}  at 0x1f8672986d0>:
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 0x1f86ffc9d60>:
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 #2295+
test: pypy/module/imp/test/test_app.py::AppTestImpModule::()::test_find_module