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 0x000001e6abf02a70>, 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 0x000001e69d353408>
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 0x000001e6aa920cc8>
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 0x000001e6aa2a0560>

    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 0x000001e6aa2a0560>
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 0x000001e69ec1a060>
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 829, 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 0x1e69c2ee9a0>:
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 0x1e6a8709bb0>:
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 0x1e6a848ff20>:
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 0x1e69d796c10>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796e70>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796c90>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796fb0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796e90>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796f10>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796d50>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796eb0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796db0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796ed0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796d30>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796d70>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796d90>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796bb0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796f90>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797170>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797110>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7971f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796f30>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a627a790>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796dd0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797190>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796ad0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796df0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797230>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796a70>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7976b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797730>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797810>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a5370970>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797870>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797310>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7975b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797430>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7978f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797610>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797890>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7977b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797630>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a5370be0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797410>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a5370a30>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797910>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797930>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a5370790>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797850>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797770>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7972b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797330>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7975d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797830>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7973b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7977f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7978b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797990>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797970>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7974d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797270>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797390>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a6cc1bb0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797290>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a6cc2760>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797450>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797470>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7972f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797510>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793b90>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7940b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793a50>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793fb0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d794010>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793b30>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a6cc1ce0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a6cc25b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a6cc28d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793ed0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a6cc30a0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793f50>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793f70>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a6cc1b50>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a6cc1c60>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793f90>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7941b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d794030>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a6cc1cc0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793ab0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a6cc2ae0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a6cc2f50>:
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 829, 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 0x1e6a3205050>:
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 0x1e6a70a1210>:
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 0x1e6a18d0a70>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf670>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf890>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf760>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf550>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d03b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf580>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf510>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf720>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d0480>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf840>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d794230>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793af0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793b70>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d0bb0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793c90>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cfb10>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7940d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793a70>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a3d29f70>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d795830>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7958b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796250>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796370>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7968b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796410>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796490>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a3d2a0f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d20e0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7963b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796710>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796c70>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796ef0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d1850>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796e30>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796cf0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796b30>:
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 829, 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 0x1e69d793cb0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf4c0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf9c0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cfe30>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf730>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf5d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf7e0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cfb20>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf830>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793f10>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793cd0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793d30>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793ad0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7941d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793e50>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d794190>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d794090>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cfc40>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d0250>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cff40>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d0160>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cfc10>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d06a0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793d70>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793fd0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d01d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d05e0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cfbe0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793c30>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cfe90>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793e70>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793c10>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf520>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d0800>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d794070>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793b50>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d05b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d09b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf7f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d01c0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d0be0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793d10>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793e90>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793bf0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cfb90>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793bb0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793bd0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d794050>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793d50>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793c70>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793c50>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d1330>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf920>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793cf0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d0cb0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d1120>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d16d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cfc90>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793dd0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18cf900>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793d90>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d794110>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793df0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793db0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d0d20>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793e10>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d794130>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d794150>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793f30>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d793ef0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7940f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d04a0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d1310>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d1660>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d795870>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d795630>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d795ff0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d795e30>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d795a50>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796870>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796470>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796390>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d11e0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796890>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7964d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7965d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7969b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7963f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d1910>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796270>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7965f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d1a80>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796930>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d21c0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7964b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d2130>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d04d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d16e0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796810>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7968d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796310>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796750>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796430>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796790>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796530>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7962d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796910>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7966b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7964f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796510>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796830>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796690>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796450>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7967d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796990>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796610>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796770>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796c50>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796b70>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797210>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796cb0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796cd0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796a50>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d2ad0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796f50>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796e10>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797130>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797090>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d0a00>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d26a0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796a90>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d2480>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797050>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796b10>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797150>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796e50>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d7970d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796ab0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796b90>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796bd0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a18d1ef0>:
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 829, 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 0x1e69f8d5de0>:
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 0x1e69d7973d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d794170>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a5432fe0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d796fd0>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d797590>:
E           <C object Array of Char {'nolength': True}  at 0x1e69d795510>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b56b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a5433930>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5370>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a5432f00>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b56f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b4f70>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5590>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b54f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5070>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a54332a0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5190>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a3d2a7b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5010>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5050>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a54330d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5090>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5270>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5150>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5290>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b53b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b53d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5030>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a3d2a6c0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b51d0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b52b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a3d2aa20>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5730>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5570>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b50f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a5432fc0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5110>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5430>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a5433260>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a3d2a150>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5250>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5530>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5710>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5450>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5310>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b55b0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b4fd0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5890>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5930>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a5433310>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5910>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b58f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5b50>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5db0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5dd0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5d30>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a5432900>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5d90>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5eb0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5bd0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5ef0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a3d2a390>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a54333f0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5bf0>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a63b5e30>:
E           <C object Array of Char {'nolength': True}  at 0x1e6a54329a0>:
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 829, 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 0x1e6a7374f70>:
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 #2399+
test: pypy/module/imp/test/test_app.py::AppTestImpModule::()::test_find_module