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 0x00000152e4737178>, 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 0x00000152d7973408>
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 0x00000152e43a2188>
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 0x00000152e400cba0>

    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 0x00000152e400cba0>
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 0x00000152d91d8d60>
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 0x152d7cff290>:
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 0x152e29a4ef0>:
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 0x152dd68b9c0>:
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 0x152d7db48e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4940>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4740>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4520>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4be0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4880>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4ae0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4760>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db49c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db49e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4960>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4600>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4a40>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4980>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4620>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4bc0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4b00>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4540>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4560>:
E           <C object Array of Char {'nolength': True}  at 0x152d8fe7740>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db44a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db48c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db44e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db46c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db47a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db49a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4780>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4b20>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4a00>:
E           <C object Array of Char {'nolength': True}  at 0x152d9151df0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4b40>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db47c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db44c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db47e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db48a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db53c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5480>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4ea0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4da0>:
E           <C object Array of Char {'nolength': True}  at 0x152d91522d0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db50c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d9152060>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5320>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db50e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d9151e50>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5140>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4d40>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5440>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5400>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5120>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db51e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5160>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5340>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4dc0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4de0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4ca0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5200>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4d80>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5360>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfced0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4e20>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9690>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4f20>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db51a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4e00>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db52a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4f60>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4e40>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5240>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5060>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4fe0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5220>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9450>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf96a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9ad0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5000>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9260>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4ee0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5260>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfce10>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9760>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5300>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4fc0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5080>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf91b0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5020>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9110>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf94f0>:
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 0x152d834bc80>:
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 0x152e02e00a0>:
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 0x152d7bfb4d0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfcc60>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9c10>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9510>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9810>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9dd0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfcfa0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa720>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa660>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa7c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa630>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4e80>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db58a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5a80>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa3e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5b20>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfb250>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5b80>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db58c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d9d823c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5580>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5520>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5620>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5680>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db56c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5b00>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3220>:
E           <C object Array of Char {'nolength': True}  at 0x152d9d82930>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfbb50>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db38c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3e00>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4280>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4440>:
E           <C object Array of Char {'nolength': True}  at 0x152dd371910>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db42e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3ca0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3da0>:
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 0x152d7db50a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9960>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf99a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9fd0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfccb0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf96e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa3a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfc940>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9e10>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5100>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4fa0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4f00>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4ec0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5180>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5380>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db52e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4e60>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9e50>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa2a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9fc0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa120>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf99f0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa340>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5280>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db53e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf96b0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa480>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa7b0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4ce0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf91f0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db56a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5640>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa780>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9c20>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db57c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5780>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfae90>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf9cf0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa500>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa980>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf94a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5600>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5a60>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db55c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa870>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5980>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db59c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5880>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db54a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db59a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5740>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfb0b0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfb150>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5ba0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfab20>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfb260>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfb540>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bf95b0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5560>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfb6f0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db57a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5bc0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5aa0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5720>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfbbd0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db58e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5540>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5760>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db56e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5660>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5500>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa130>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfa5d0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfb0e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5ac0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5b60>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db54c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5700>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db57e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5800>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db55a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5900>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfc3c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5820>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db54e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5ae0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5a00>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5920>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfb5b0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db5940>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db59e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfbd40>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db2e80>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfb8c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3240>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfb2e0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfc1a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7bfc680>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db41c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4020>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3fa0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3d80>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4140>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4100>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3fc0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db43c0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4060>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3ee0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4180>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4380>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4460>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4080>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4200>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3d40>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db40a0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3ce0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4220>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4240>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3fe0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4260>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3e80>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3e20>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4420>:
E           <C object Array of Char {'nolength': True}  at 0x152dd370a40>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4400>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4160>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4000>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3cc0>:
E           <C object Array of Char {'nolength': True}  at 0x152dd3715b0>:
E           <C object Array of Char {'nolength': True}  at 0x152dd3720b0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4320>:
E           <C object Array of Char {'nolength': True}  at 0x152dd371a10>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3f00>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3d00>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3f20>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3f40>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4a60>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4aa0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4900>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4840>:
E           <C object Array of Char {'nolength': True}  at 0x152dd372110>:
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 0x152df020f90>:
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 0x152d7db4580>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db4700>:
E           <C object Array of Char {'nolength': True}  at 0x152d8fe7ae0>:
E           <C object Array of Char {'nolength': True}  at 0x152d7db3140>:
E           <C object Array of Char {'nolength': True}  at 0x152d6788700>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6c30>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6ff0>:
E           <C object Array of Char {'nolength': True}  at 0x152d8fe7bc0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6df0>:
E           <C object Array of Char {'nolength': True}  at 0x152d8fe7e90>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6e50>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6af0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6a50>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6bd0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6e10>:
E           <C object Array of Char {'nolength': True}  at 0x152d8fe8010>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d70f0>:
E           <C object Array of Char {'nolength': True}  at 0x152d9d82630>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7110>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d69f0>:
E           <C object Array of Char {'nolength': True}  at 0x152d8fe82b0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d69b0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6d90>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6ab0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7050>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6cb0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6bf0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6d50>:
E           <C object Array of Char {'nolength': True}  at 0x152d9d82a80>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7030>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6f10>:
E           <C object Array of Char {'nolength': True}  at 0x152d9d82540>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6b50>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6c10>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6a70>:
E           <C object Array of Char {'nolength': True}  at 0x152d8fe80b0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6d70>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6e30>:
E           <C object Array of Char {'nolength': True}  at 0x152d8fe7a90>:
E           <C object Array of Char {'nolength': True}  at 0x152d9d824e0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6a90>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6cd0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6e70>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6ad0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6f50>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d6fd0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7170>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d72d0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7390>:
E           <C object Array of Char {'nolength': True}  at 0x152d8fe7fc0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d75f0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7210>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7430>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7610>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7370>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7690>:
E           <C object Array of Char {'nolength': True}  at 0x152d8fe8410>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7930>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7410>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d71b0>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7270>:
E           <C object Array of Char {'nolength': True}  at 0x152d9d82300>:
E           <C object Array of Char {'nolength': True}  at 0x152d8fe8c00>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d7330>:
E           <C object Array of Char {'nolength': True}  at 0x152e26d76d0>:
E           <C object Array of Char {'nolength': True}  at 0x152d8fe76d0>:
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 0x152dea64780>:
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 #2341+
test: pypy/module/imp/test/test_app.py::AppTestImpModule::()::test_find_module