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 0x00000236f73d7bc8>, 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 0x00000236ea341440>
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 0x00000236f71d1060>
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 0x00000236f6169c20>

    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 0x00000236f6169c20>
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 0x00000236ebb94ee0>
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 0x236ea023af0>:
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 0x236f5c21bb0>:
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 0x236f5b0a5a0>:
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 0x236ea785870>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7858d0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785a30>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785bb0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785d30>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785890>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785c90>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785d90>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785c10>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7857d0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785770>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785d70>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7857f0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785bd0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785790>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785cb0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785e10>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785830>:
E           <C object Array of Char {'nolength': True}  at 0x236ea783690>:
E           <C object Array of Char {'nolength': True}  at 0x236f5b05110>:
E           <C object Array of Char {'nolength': True}  at 0x236ea782fb0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7836f0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea783010>:
E           <C object Array of Char {'nolength': True}  at 0x236ea783dd0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea783df0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea783e90>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784550>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784510>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784530>:
E           <C object Array of Char {'nolength': True}  at 0x236f2566760>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784690>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784230>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784170>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7841b0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784570>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784290>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784190>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7845b0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7845f0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2566a00>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784370>:
E           <C object Array of Char {'nolength': True}  at 0x236f25669a0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784610>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784390>:
E           <C object Array of Char {'nolength': True}  at 0x236f25663d0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7843b0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784010>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7843d0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7841f0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784210>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784670>:
E           <C object Array of Char {'nolength': True}  at 0x236ea783f30>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784450>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7843f0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7842d0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784310>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784650>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7846b0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784250>:
E           <C object Array of Char {'nolength': True}  at 0x236f37ada10>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7844d0>:
E           <C object Array of Char {'nolength': True}  at 0x236f37ae420>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784270>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784330>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7844f0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784110>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784030>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7846d0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784430>:
E           <C object Array of Char {'nolength': True}  at 0x236ea783f90>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784410>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784490>:
E           <C object Array of Char {'nolength': True}  at 0x236f37aeb20>:
E           <C object Array of Char {'nolength': True}  at 0x236f37ada30>:
E           <C object Array of Char {'nolength': True}  at 0x236f37addf0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784910>:
E           <C object Array of Char {'nolength': True}  at 0x236f37aea30>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7849f0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784e70>:
E           <C object Array of Char {'nolength': True}  at 0x236f37ae890>:
E           <C object Array of Char {'nolength': True}  at 0x236f37ae900>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784930>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784790>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784950>:
E           <C object Array of Char {'nolength': True}  at 0x236f37adca0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784a30>:
E           <C object Array of Char {'nolength': True}  at 0x236f37ae8b0>:
E           <C object Array of Char {'nolength': True}  at 0x236f37ae9b0>:
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 0x236ee7472b0>:
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 0x236eb87fd40>:
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 0x236f2e75d20>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75430>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75720>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75680>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75c70>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75ab0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e753f0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e76390>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75de0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e76030>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75f30>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784cb0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784d30>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784b50>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75240>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784cd0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e76380>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784d50>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784830>:
E           <C object Array of Char {'nolength': True}  at 0x236f25667c0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784c50>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784e10>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785490>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7854b0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7851d0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785330>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785370>:
E           <C object Array of Char {'nolength': True}  at 0x236f2566310>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e77f50>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7851b0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7850f0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785650>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785670>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e768c0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785010>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7855d0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785970>:
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 0x236ea784810>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75750>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e755b0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75c10>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e753c0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75610>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75f00>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75290>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75450>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784a50>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784eb0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784b10>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784ab0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784df0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784f10>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784890>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7848d0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75930>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75da0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75550>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e758f0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75100>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75a50>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784ef0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784af0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75470>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75bf0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e76190>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784770>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e754b0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784b90>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784b30>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e764a0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e76290>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784b70>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7847b0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75d70>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e76790>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75210>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75e10>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e76760>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784cf0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784bb0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784c10>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e764b0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784d10>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784d70>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784d90>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784e90>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784a10>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7847d0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e753a0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e761a0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784bd0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e76960>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e76eb0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e75790>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e76580>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784750>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e764d0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784bf0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784870>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784c70>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784c30>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e76c10>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784850>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784970>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784db0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784dd0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7848f0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7849b0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e76000>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e76f70>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e772d0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784990>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784e50>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785250>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7852b0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7851f0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785270>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785350>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7855f0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e77130>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785290>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7854d0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785190>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785630>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7850d0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e77690>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784f70>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785310>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e77b70>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785390>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e77210>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784f30>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e77b40>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e77460>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e777b0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784f50>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785210>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7853b0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7853f0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785690>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785230>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7853d0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785450>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7852d0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785430>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785510>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784fb0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7852f0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7854f0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784ff0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785710>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785070>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785410>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785470>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785550>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785530>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7855b0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785570>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785610>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784f90>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e78a10>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785590>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784fd0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785150>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785110>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e78480>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e77d20>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7856d0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e77620>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7856f0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea7850b0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785d50>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785950>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785c70>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785db0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785730>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785750>:
E           <C object Array of Char {'nolength': True}  at 0x236f2e776d0>:
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 0x236f1900900>:
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 0x236ea785b90>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785af0>:
E           <C object Array of Char {'nolength': True}  at 0x236f5b5fae0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784ed0>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785e50>:
E           <C object Array of Char {'nolength': True}  at 0x236ea785a70>:
E           <C object Array of Char {'nolength': True}  at 0x236ea784470>:
E           <C object Array of Char {'nolength': True}  at 0x236f5b5f580>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d680>:
E           <C object Array of Char {'nolength': True}  at 0x236f5b5eed0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d700>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d9e0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d500>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d7c0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d3e0>:
E           <C object Array of Char {'nolength': True}  at 0x236f5b5f010>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d960>:
E           <C object Array of Char {'nolength': True}  at 0x236f2566970>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d9a0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d4e0>:
E           <C object Array of Char {'nolength': True}  at 0x236f5b5ef40>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3db60>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d840>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3daa0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d7a0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d7e0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d6e0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d940>:
E           <C object Array of Char {'nolength': True}  at 0x236f2566700>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d480>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d860>:
E           <C object Array of Char {'nolength': True}  at 0x236f2566580>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3db40>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d400>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d620>:
E           <C object Array of Char {'nolength': True}  at 0x236f5b600e0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3da00>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3dae0>:
E           <C object Array of Char {'nolength': True}  at 0x236f5b5f6a0>:
E           <C object Array of Char {'nolength': True}  at 0x236f25667f0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3d9c0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e2c0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e180>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e280>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3dd00>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e040>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e2e0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e000>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e360>:
E           <C object Array of Char {'nolength': True}  at 0x236f5b60170>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3df00>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e1c0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e260>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e0e0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3dd40>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e2a0>:
E           <C object Array of Char {'nolength': True}  at 0x236f5b5f3e0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e100>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e3a0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3dca0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3dda0>:
E           <C object Array of Char {'nolength': True}  at 0x236f2566400>:
E           <C object Array of Char {'nolength': True}  at 0x236f5b5f7d0>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e400>:
E           <C object Array of Char {'nolength': True}  at 0x236e9e3e9c0>:
E           <C object Array of Char {'nolength': True}  at 0x236f5b601f0>:
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 0x236f3861910>:
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 #2302+
test: pypy/module/imp/test/test_app.py::AppTestImpModule::()::test_find_module