Home - Summaries: (main) : (py3.11) : Everything - Nightly builds - Benchmarks - RPython - Builders - About

translator/c/test/test_genc.py::test_long_strings

def test_long_strings():
        s1 = 'hello'
        s2 = ''.join([chr(i) for i in range(256)])
        s3 = 'abcd'*17
        s4 = open(__file__, 'rb').read(2049)
        choices = [s1, s2, s3, s4]
        def f(i, j):
            return choices[i][j]
        f1 = compile(f, [int, int])
        for i, s in enumerate(choices):
            j = 0
            while j < len(s):
                c = s[j]
>               assert f1(i, j) == c

translator\c\test\test_genc.py:471: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
translator\c\test\test_genc.py:198: in __call__
    return f(*args, **kwds)
translator\c\test\test_genc.py:145: in f
    err=return_stderr)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <rpython.translator.c.genc.CStandaloneBuilder object at 0x000001b07927a4b8>
args = '3 408', env = None, err = False, expect_crash = False
exe = local('d:\\systemtemp\\pytest\\usession-main-2683\\testing_17\\testing_17.exe')

    def cmdexec(self, args='', env=None, err=False, expect_crash=False, exe=None):
        assert self._compiled
        if sys.platform == 'win32':
            #Prevent opening a dialog box
            import ctypes
            winapi = ctypes.windll.kernel32
            SetErrorMode = winapi.SetErrorMode
            SetErrorMode.argtypes=[ctypes.c_int]
    
            SEM_FAILCRITICALERRORS = 1
            SEM_NOGPFAULTERRORBOX  = 2
            SEM_NOOPENFILEERRORBOX = 0x8000
            flags = SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX \
                    | SEM_NOOPENFILEERRORBOX
            #Since there is no GetErrorMode, do a double Set
            old_mode = SetErrorMode(flags)
            SetErrorMode(old_mode | flags)
        if env is None:
            envrepr = ''
        else:
            envrepr = ' [env=%r]' % (env,)
            env.update(os.environ)
        if exe is None:
            exe = self.executable_name
        log.cmdexec('%s %s%s' % (exe, args, envrepr))
        res = self.translator.platform.execute(exe, args, env=env)
        if sys.platform == 'win32':
            SetErrorMode(old_mode)
        if res.returncode != 0:
            if expect_crash:
                if type(expect_crash) is int and expect_crash != res.returncode:
                    raise Exception("Returned %d, but expected %d" % (
                        res.returncode, expect_crash))
                return res.out, res.err
            print(res.err, file=sys.stderr)
>           raise Exception("Returned %d" % (res.returncode,))
E           Exception: Returned 3221225477

translator\c\genc.py:318: Exception
---------- Captured stdout call ----------
THE RESULT IS: h ;
MALLOC COUNTERS: 0 0
THE RESULT IS: e ;
MALLOC COUNTERS: 0 0
THE RESULT IS: l ;
MALLOC COUNTERS: 0 0
THE RESULT IS: l ;
MALLOC COUNTERS: 0 0
THE RESULT IS: o ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x01 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x02 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x03 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x04 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x05 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x06 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x07 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x08 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \t ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: 
 ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x0b ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x0c ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: 
 ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x0e ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x0f ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x10 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x11 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x12 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x13 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x14 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x15 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x16 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x17 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x18 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x19 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x1a ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x1b ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x1c ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x1d ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x1e ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x1f ;'
MALLOC COUNTERS: 0 0
THE RESULT IS:   ;
MALLOC COUNTERS: 0 0
THE RESULT IS: ! ;
MALLOC COUNTERS: 0 0
THE RESULT IS: " ;
MALLOC COUNTERS: 0 0
THE RESULT IS: # ;
MALLOC COUNTERS: 0 0
THE RESULT IS: $ ;
MALLOC COUNTERS: 0 0
THE RESULT IS: % ;
MALLOC COUNTERS: 0 0
THE RESULT IS: & ;
MALLOC COUNTERS: 0 0
THE RESULT IS: ' ;
MALLOC COUNTERS: 0 0
THE RESULT IS: ( ;
MALLOC COUNTERS: 0 0
THE RESULT IS: ) ;
MALLOC COUNTERS: 0 0
THE RESULT IS: * ;
MALLOC COUNTERS: 0 0
THE RESULT IS: + ;
MALLOC COUNTERS: 0 0
THE RESULT IS: , ;
MALLOC COUNTERS: 0 0
THE RESULT IS: - ;
MALLOC COUNTERS: 0 0
THE RESULT IS: . ;
MALLOC COUNTERS: 0 0
THE RESULT IS: / ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 0 ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 1 ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 2 ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 3 ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 4 ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 5 ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 6 ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 7 ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 8 ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 9 ;
MALLOC COUNTERS: 0 0
THE RESULT IS: : ;
MALLOC COUNTERS: 0 0
THE RESULT IS: ; ;
MALLOC COUNTERS: 0 0
THE RESULT IS: < ;
MALLOC COUNTERS: 0 0
THE RESULT IS: = ;
MALLOC COUNTERS: 0 0
THE RESULT IS: > ;
MALLOC COUNTERS: 0 0
THE RESULT IS: ? ;
MALLOC COUNTERS: 0 0
THE RESULT IS: @ ;
MALLOC COUNTERS: 0 0
THE RESULT IS: A ;
MALLOC COUNTERS: 0 0
THE RESULT IS: B ;
MALLOC COUNTERS: 0 0
THE RESULT IS: C ;
MALLOC COUNTERS: 0 0
THE RESULT IS: D ;
MALLOC COUNTERS: 0 0
THE RESULT IS: E ;
MALLOC COUNTERS: 0 0
THE RESULT IS: F ;
MALLOC COUNTERS: 0 0
THE RESULT IS: G ;
MALLOC COUNTERS: 0 0
THE RESULT IS: H ;
MALLOC COUNTERS: 0 0
THE RESULT IS: I ;
MALLOC COUNTERS: 0 0
THE RESULT IS: J ;
MALLOC COUNTERS: 0 0
THE RESULT IS: K ;
MALLOC COUNTERS: 0 0
THE RESULT IS: L ;
MALLOC COUNTERS: 0 0
THE RESULT IS: M ;
MALLOC COUNTERS: 0 0
THE RESULT IS: N ;
MALLOC COUNTERS: 0 0
THE RESULT IS: O ;
MALLOC COUNTERS: 0 0
THE RESULT IS: P ;
MALLOC COUNTERS: 0 0
THE RESULT IS: Q ;
MALLOC COUNTERS: 0 0
THE RESULT IS: R ;
MALLOC COUNTERS: 0 0
THE RESULT IS: S ;
MALLOC COUNTERS: 0 0
THE RESULT IS: T ;
MALLOC COUNTERS: 0 0
THE RESULT IS: U ;
MALLOC COUNTERS: 0 0
THE RESULT IS: V ;
MALLOC COUNTERS: 0 0
THE RESULT IS: W ;
MALLOC COUNTERS: 0 0
THE RESULT IS: X ;
MALLOC COUNTERS: 0 0
THE RESULT IS: Y ;
MALLOC COUNTERS: 0 0
THE RESULT IS: Z ;
MALLOC COUNTERS: 0 0
THE RESULT IS: [ ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \\ ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: ] ;
MALLOC COUNTERS: 0 0
THE RESULT IS: ^ ;
MALLOC COUNTERS: 0 0
THE RESULT IS: _ ;
MALLOC COUNTERS: 0 0
THE RESULT IS: ` ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: o ;
MALLOC COUNTERS: 0 0
THE RESULT IS: z ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x85 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x90 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x9b ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \xa6 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \xb1 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \xbc ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \xc7 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \xd2 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \xdd ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \xe8 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \xf3 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \xfe ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: a ;
MALLOC COUNTERS: 0 0
THE RESULT IS: b ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 
 ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \xf3 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: 
 ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 
 ;
MALLOC COUNTERS: 0 0
THE RESULT IS:   ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \xa1 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x0b ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: j ;
MALLOC COUNTERS: 0 0
THE RESULT IS: c ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x07 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: s ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x85 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x02 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x01 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: l ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: Z ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x01 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: l ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x01 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: Z ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x01 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x01 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: l ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x02 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: Z ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x02 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x02 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: l ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x03 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: m ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x04 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: Z ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x04 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x01 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x01 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: l ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x05 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: Z ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x05 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x03 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: l ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: l ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: Z ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 
 ;
MALLOC COUNTERS: 0 0
THE RESULT IS: Z ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: l ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: Z ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x16 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: d ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: m ;
MALLOC COUNTERS: 0 0
THE RESULT IS: 
 ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x01 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS:   ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
THE RESULT IS: # ;
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x10 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x84 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x84 ;'
MALLOC COUNTERS: 0 0
REPR: 'THE RESULT IS: \x00 ;'
MALLOC COUNTERS: 0 0
---------- Captured stderr call ----------
[platform:msg] Updated environment with vsver 160, using x64 True
[flowgraph] (rpython.translator.c.test.test_genc:66)entry_point
[translation:info] Annotating&simplifying...
[c586f273566a500] {translation-task
starting annotate 
[translation:info] with policy: rpython.annotator.policy.AnnotatorPolicy
[flowgraph] (rpython.translator.c.test.test_genc:464)f
[flowgraph] (rpython.flowspace.specialcase:76)rpython_print_item
[flowgraph] (rpython.translator.c.test.test_genc:39)llrepr_out
[flowgraph] (rpython.flowspace.specialcase:95)rpython_print_newline
[flowgraph] (rpython.flowspace.specialcase:85)rpython_print_end
[flowgraph] (rpython.rlib.rposix:500)write
[flowgraph] (rpython.rtyper.lltypesystem.rffi:1427)scoped_nonmovingbuffer.__init__
[flowgraph] (rpython.rtyper.lltypesystem.rffi:1431)scoped_nonmovingbuffer.__enter__
[flowgraph] (rpython.rtyper.lltypesystem.rffi:873)get_nonmovingbuffer_ll
[flowgraph] (rpython.rlib.objectmodel:315)we_are_translated_to_c
[flowgraph] (rpython.rtyper.lltypesystem.rstr:116)copy_string_to_raw
[flowgraph] (rpython.rtyper.lltypesystem.rstr:63)_get_raw_buf
[flowgraph] (rpython.rtyper.lltypesystem.rstr:57)_str_ofs
[flowgraph] (rpython.rtyper.lltypesystem.llmemory:411)sizeof
[flowgraph] (rpython.rtyper.lltypesystem.rffi:278)wrap_write
[flowgraph] (rpython.rtyper.lltypesystem.rffi:1433)scoped_nonmovingbuffer.__exit__
[flowgraph] (rpython.rtyper.lltypesystem.rffi:937)free_nonmovingbuffer_ll
[flowgraph] (rpython.rtyper.lltypesystem.rffi:3)ccall_wrap_write
[flowgraph] (rpython.rlib.rgil:160)release
[flowgraph] (rpython.rlib.rposix:151)_errno_before
[flowgraph] (rpython.rlib.rthread:349)getraw
[flowgraph] (rpython.rlib.rthread:349)getraw
[flowgraph] (rpython.rlib.rthread:349)getraw
[flowgraph] (rpython.rlib.rthread:349)getraw
[flowgraph] (rpython.rlib.rposix:170)_errno_after
[flowgraph] (rpython.rlib.rthread:364)setraw
[flowgraph] (rpython.rlib.rthread:364)setraw
[flowgraph] (rpython.rlib.rthread:364)setraw
[flowgraph] (rpython.rlib.rthread:364)setraw
[flowgraph] (rpython.rlib.rgil:171)acquire
[flowgraph] (rpython.rlib.rthread:282)gc_thread_run
[flowgraph] (rpython.rlib.rposix:430)handle_posix_error
[flowgraph] (rpython.rlib.rarithmetic:139)widen
[flowgraph] (rpython.rlib.rposix:113)get_saved_errno
[flowgraph] (?:1)memo_offsetof_0
[flowgraph] (?:1)memo_itemoffsetof_0
[flowgraph] (?:1)memo__sizeof_none_0
[flowgraph] (?:1)memo_itemoffsetof_0
[flowgraph] (?:1)memo__isfunctype_0
[flowgraph] (?:1)memo__isfunctype_0
[flowgraph] (?:1)memo__should_widen_type_0
[c586f274ed28500] translation-task}
[translation:info] usession directory: d:\systemtemp\pytest\usession-main-2683
[translation:info] already done: Annotating&simplifying
[translation:info] RTyping...
[c586f274ed28500] {translation-task
starting rtype_lltype 
[flowgraph] (rpython.rtyper.rclass:1170)ll_runtime_type_info
[flowgraph] (rpython.rtyper.rlist:688)ll_getitem_nonneg
[flowgraph] (rpython.rtyper.rlist:717)ll_getitem_fast
[flowgraph] (rpython.rtyper.lltypesystem.rlist:372)ll_getitem_fast
[flowgraph] (rpython.rtyper.lltypesystem.rlist:369)ll_items
[flowgraph] (rpython.rtyper.lltypesystem.rstr:1058)ll_int
[flowgraph] (rpython.rtyper.rstr:425)ll_str
[flowgraph] (?:1)memo_ll_constant_0
[flowgraph] (rpython.rtyper.rlist:697)ll_getitem
[flowgraph] (rpython.rtyper.lltypesystem.rlist:395)ll_fixed_length
[flowgraph] (rpython.rtyper.rlist:721)ll_getitem_foldable_nonneg
[flowgraph] (rpython.rtyper.lltypesystem.rlist:402)ll_fixed_getitem_fast
[flowgraph] (rpython.rtyper.rstr:955)ll_stritem
[flowgraph] (rpython.rtyper.lltypesystem.rstr:350)ll_strlen
[flowgraph] (rpython.rtyper.lltypesystem.rstr:354)ll_stritem_nonneg
[flowgraph] (rpython.rtyper.lltypesystem.rstr:1293)ll_striter
[flowgraph] (rpython.rtyper.lltypesystem.rstr:1306)ll_strnext
[flowgraph] (rpython.rtyper.rlist:588)ll_append
[flowgraph] (rpython.rtyper.lltypesystem.rlist:365)ll_length
[flowgraph] (rpython.rtyper.lltypesystem.rlist:280)_ll_list_resize_ge
[flowgraph] (rpython.rlib.jit:269)isconstant
[flowgraph] (rpython.rlib.jit:269)isconstant
[flowgraph] (rpython.rlib.jit:1300)conditional_call
[flowgraph] (?:11)_ll_list_resize_hint_really_look_inside_iff
[flowgraph] (rpython.rtyper.lltypesystem.rlist:198)<lambda>
[flowgraph] (rpython.rlib.jit:269)isconstant
[flowgraph] (rpython.rtyper.lltypesystem.rlist:198)_ll_list_resize_hint_really
[flowgraph] (rpython.rtyper.lltypesystem.rlist:351)_ll_new_empty_item_array
[flowgraph] (?:2)ll_arraycopy
[flowgraph] (rpython.rlib.rgc:362)ll_arraycopy
[flowgraph] (rpython.rlib.rgc:342)copy_item
[flowgraph] (rpython.rlib.jit:269)isconstant
[flowgraph] (?:2)_ll_list_resize_hint_really_trampoline
[flowgraph] (rpython.rtyper.lltypesystem.rlist:198)_ll_list_resize_hint_really
[flowgraph] (rpython.rtyper.lltypesystem.rlist:377)ll_setitem_fast
[flowgraph] (rpython.rtyper.lltypesystem.rlist:369)ll_items
[flowgraph] (?:1)memo__ll_prebuilt_empty_array_0
[flowgraph] (?:1)memo__contains_gcptr_0
[flowgraph] (?:1)memo_itemoffsetof_0
[flowgraph] (rpython.rtyper.rstr:554)ll_str
[flowgraph] (rpython.rtyper.lltypesystem.rstr:362)ll_chr2str
[flowgraph] (?:2)mallocstr
[flowgraph] (rpython.rtyper.lltypesystem.rstr:36)mallocstr
[flowgraph] (?:11)ll_join_chars_look_inside_iff
[flowgraph] (rpython.rtyper.lltypesystem.rstr:821)<lambda>
[flowgraph] (rpython.rlib.jit:269)isconstant
[flowgraph] (rpython.rtyper.lltypesystem.rstr:820)ll_join_chars
[flowgraph] (rpython.rlib.jit:281)isvirtual
[flowgraph] (?:2)ll_join_chars_trampoline
[flowgraph] (rpython.rtyper.lltypesystem.rstr:820)ll_join_chars
[flowgraph] (?:11)ll_listdelslice_startonly_look_inside_iff
[flowgraph] (rpython.rtyper.rlist:912)<lambda>
[flowgraph] (rpython.rlib.jit:269)isconstant
[flowgraph] (rpython.rtyper.rlist:912)ll_listdelslice_startonly
[flowgraph] (rpython.rtyper.rlist:539)ll_null_item
[flowgraph] (rpython.rlib.jit:281)isvirtual
[flowgraph] (rpython.rtyper.lltypesystem.rlist:295)_ll_list_resize_le
[flowgraph] (rpython.rlib.jit:269)isconstant
[flowgraph] (?:2)ll_listdelslice_startonly_trampoline
[flowgraph] (rpython.rtyper.rlist:912)ll_listdelslice_startonly
[flowgraph] (rpython.rlib.jit:269)isconstant
[flowgraph] (rpython.rlib.jit:1300)conditional_call
[rtyper] specializing: 100 / 395 blocks   (25%)
[flowgraph] (?:11)ll_join_strs_look_inside_iff
[flowgraph] (rpython.rtyper.lltypesystem.rstr:785)<lambda>
[flowgraph] (rpython.rlib.jit:294)loop_unrolling_heuristic
[flowgraph] (rpython.rlib.jit:269)isconstant
[flowgraph] (rpython.rtyper.lltypesystem.rstr:783)ll_join_strs
[flowgraph] (rpython.rtyper.lltypesystem.llmemory:1037)cast_any_ptr
[flowgraph] (rpython.rtyper.lltypesystem.rstr:78)copy_string_contents
[flowgraph] (rpython.rlib.jit:281)isvirtual
[flowgraph] (?:2)ll_join_strs_trampoline
[flowgraph] (rpython.rtyper.lltypesystem.rstr:783)ll_join_strs
[rtyper] specializing: 200 / 449 blocks   (44%)
[rtyper] specializing: 300 / 449 blocks   (66%)
[rtyper] specializing: 400 / 449 blocks   (89%)
[rtyper] -=- specialized 449 blocks -=-
[flowgraph] (rpython.rtyper.rclass:1133)ll_issubclass
[flowgraph] (rpython.rtyper.rclass:1130)ll_type
[rtyper] -=- specialized 4 more blocks -=-
[c586f2789bdd500] translation-task}
[translation:info] usession directory: d:\systemtemp\pytest\usession-main-2683
[translation:info] already done: Annotating&simplifying
[translation:info] already done: RTyping
[translation:info] lltype back-end optimisations...
[c586f2789c57600] {translation-task
starting backendopt_lltype 
[backendopt:removecasts] removed 1 cast_pointers in _get_raw_buf__rpy_string
[backendopt:removecasts] removed 3 cast_pointers in handle_posix_error__write
[backendopt:removecasts] removed 4 cast_pointers in ll_int__rpy_stringPtr_Signed
[backendopt:removecasts] removed 1 cast_pointers in ll_strnext__stringiterPtr
[backendopt:removecasts] removed 1 cast_pointers in ll_join_strs__v16138___simple_call__function
[backendopt:removecasts] removed 1 cast_pointers in copy_string_contents__rpy_stringPtr_rpy_stringPtr_Signed_Signed_Signed
[backendopt:removecasts] removed 1 cast_pointers in ll_join_strs__v16141___simple_call__function
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining]    0.00 ll_getitem_nonneg__dum_nocheckConst_ll_getitem_fastConst_listPtr_Signed
[backendopt:inlining]    0.00 conditional_call__v16134___simple_call__function_star_3
[backendopt:inlining]    0.00 copy_string_contents__rpy_stringPtr_rpy_stringPtr_Signed_Signed_Signed
[backendopt:inlining]    0.00 cast_any_ptr__Ptr_GcStruct_rpy_stringLlT_rpy_stringPtr
[backendopt:inlining]    0.00          isvirtual__v16139___simple_call__function
[backendopt:inlining]    0.00         isconstant__v16137___simple_call__function
[backendopt:inlining]    0.00         isconstant__v16133___simple_call__function
[backendopt:inlining]    0.00         isconstant__v16130___simple_call__function
[backendopt:inlining]    0.00          wrap_write__Signed_arrayPtr_Signed_star_3
[backendopt:inlining]    0.00                    scoped_nonmovingbuffer.__init__
[backendopt:inlining]    0.00                                      gc_thread_run
[backendopt:inlining]    0.00                   scoped_nonmovingbuffer.__enter__
[backendopt:inlining]    0.00                                         widen__int
[backendopt:inlining]    0.00          isvirtual__v16128___simple_call__function
[backendopt:inlining]    0.00         isconstant__v16126___simple_call__function
[backendopt:inlining]    0.00         isconstant__v16120___simple_call__function
[backendopt:inlining]    0.00                    memo__ll_prebuilt_empty_array_0
[backendopt:inlining]    0.00         isconstant__v16116___simple_call__function
[backendopt:inlining]    0.00                    ll_getitem_fast__listPtr_Signed
[backendopt:inlining]    0.00                                 memo_ll_constant_0
[backendopt:inlining]    0.00                                   __exit____star_3
[backendopt:inlining]    0.00                                 copy_string_to_raw
[backendopt:inlining]    0.00                             get_nonmovingbuffer_ll
[backendopt:inlining]    0.00         isconstant__v16114___simple_call__function
[backendopt:inlining]    0.00         isconstant__v16110___simple_call__function
[backendopt:inlining]    0.00                                memo__sizeof_none_0
[backendopt:inlining]    0.00                           _get_raw_buf__rpy_string
[backendopt:inlining]    0.00 conditional_call__v16111___simple_call__function_star_3
[backendopt:inlining]    0.00         isconstant__v16109___simple_call__function
[backendopt:inlining]    0.00          isvirtual__v16122___simple_call__function
[backendopt:inlining]    2.00                                 ll_length__listPtr
[backendopt:inlining]    2.00                           ll_strlen__rpy_stringPtr
[backendopt:inlining]    2.00                                  ll_items__listPtr
[backendopt:inlining]    2.00                                             getraw
[backendopt:inlining]    2.00                                  ll_items__listPtr
[backendopt:inlining]    2.00                                             setraw
[backendopt:inlining]    2.00                                             setraw
[backendopt:inlining]    2.00                                             setraw
[backendopt:inlining]    2.00                                             setraw
[backendopt:inlining]    2.00                          ll_fixed_length__arrayPtr
[backendopt:inlining]    2.00                                             getraw
[backendopt:inlining]    2.00                                             getraw
[backendopt:inlining]    2.00                                             getraw
[backendopt:inlining]    4.00            ll_stritem_nonneg__rpy_stringPtr_Signed
[backendopt:inlining]    4.00         copy_item__arrayPtr_arrayPtr_Signed_Signed
[backendopt:inlining]    4.00             ll_fixed_getitem_fast__arrayPtr_Signed
[backendopt:inlining]    5.00                                            release
[backendopt:inlining]    6.00                               _str_ofs__rpy_string
[backendopt:inlining]    6.75 loop_unrolling_heuristic__v16136___simple_call__function
[backendopt:inlining]    7.00                                  mallocstr__Signed
[backendopt:inlining]    7.00                                            acquire
[backendopt:inlining]    4.00        ll_getitem_foldable_nonneg__arrayPtr_Signed
[backendopt:inlining]    7.00 ll_listdelslice_startonly_look_inside_iff__listPtr_Signed
[backendopt:inlining]    7.00                       ll_str__CharR_CharConst_Char
[backendopt:inlining]    4.00                                    get_saved_errno
[backendopt:inlining]    7.00                              rpython_print_newline
[backendopt:inlining]    7.00                                    llrepr_out__str
[backendopt:inlining]    7.50                                  mallocstr__Signed
[backendopt:inlining]    9.00 _ll_list_resize_hint_really_look_inside_iff__listPtr_Signed_Bool
[backendopt:inlining]    9.00 ll_join_strs_look_inside_iff__Signed_arrayPtr_Ptr_GcStruct_rpy_stringLlT
[backendopt:inlining]    9.00 ll_join_chars_look_inside_iff__Signed_arrayPtr_Ptr_GcStruct_rpy_stringLlT
[backendopt:inlining]    4.00 ll_str__StringR_Ptr_GcStruct_rpy_strin_rpy_stringPtr
[backendopt:inlining]    9.50                                   ll_chr2str__Char
[backendopt:inlining]    6.00                    ll_getitem_fast__listPtr_Signed
[backendopt:inlining]   11.00 ll_arraycopy__arrayPtr_arrayPtr_Signed_Signed_Signed
[backendopt:inlining]    6.00               ll_setitem_fast__listPtr_Signed_Char
[backendopt:inlining]   12.00                          ll_striter__rpy_stringPtr
[backendopt:inlining]   13.00                            free_nonmovingbuffer_ll
[backendopt:inlining]    9.00 ll_listdelslice_startonly__v16132___simple_call__function
[backendopt:inlining]    9.00 ll_listdelslice_startonly__v16127___simple_call__function
[backendopt:inlining]   15.50                          ll_strnext__stringiterPtr
[backendopt:inlining]   11.00 ll_getitem__dum_nocheckConst_ll_getitem_foldable_nonnegCons_arrayPtr_Signed
[backendopt:inlining]   11.00    ll_stritem__LLHelpersConst_rpy_stringPtr_Signed
[backendopt:inlining]   24.00                                                  f
[backendopt:inlining]   17.00                            ll_append__listPtr_Char
[backendopt:inlining]   26.16      ll_join_chars__v16121___simple_call__function
[backendopt:inlining]   26.16      ll_join_chars__v16124___simple_call__function
[backendopt:inlining]   27.50 ll_arraycopy__arrayPtr_arrayPtr_Signed_Signed_Signed
[backendopt:inlining]   31.75                          handle_posix_error__write
[backendopt:inlining] inlined 146 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] 4 simple mallocs removed in 'entry_point'
[backendopt:malloc] 1 simple mallocs removed in 'rpython_print_item'
[backendopt:malloc] 1 simple mallocs removed in 'rpython_print_end'
[backendopt:malloc] 3 simple mallocs removed in 'write'
[backendopt:malloc] 2 simple mallocs removed in 'scoped_nonmovingbuffer.__init__'
[backendopt:malloc] 7 simple mallocs removed in 'wrap_write__Signed_arrayPtr_Signed_star_3'
[backendopt:malloc] 1 simple mallocs removed in '_ll_list_resize_ge__listPtr_Signed'
[backendopt:malloc] 1 simple mallocs removed in 'conditional_call__v16111___simple_call__function_star_3'
[backendopt:malloc] 1 simple mallocs removed in '_ll_list_resize_le__listPtr_Signed'
[backendopt:malloc] 1 simple mallocs removed in 'conditional_call__v16134___simple_call__function_star_3'
[backendopt:malloc] removed 22 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[c586f27a624a480] translation-task}
[translation:info] usession directory: d:\systemtemp\pytest\usession-main-2683
[translation:info] already done: Annotating&simplifying
[translation:info] already done: RTyping
[translation:info] already done: lltype back-end optimisations
[translation:info] inserting stack checks...
[c586f27a64aca80] {translation-task
starting stackcheckinsertion_lltype 
[flowgraph] (rpython.rlib.rstack:42)stack_check
[flowgraph] (rpython.rlib.rstack:67)stack_check_slowpath
[rtyper] -=- specialized 8 more blocks -=-
[translation:info] inserted 0 stack checks.
[c586f27a8e28c00] translation-task}
[translation:info] Creating database for generating c source...
[c586f27a8e28c00] {translation-task
starting database_c 
[flowgraph] (rpython.translator.exceptiontransform:100)rpyexc_occurred
[flowgraph] (rpython.translator.exceptiontransform:104)rpyexc_fetch_type
[flowgraph] (rpython.translator.exceptiontransform:107)rpyexc_fetch_value
[flowgraph] (rpython.translator.exceptiontransform:110)rpyexc_clear
[flowgraph] (rpython.translator.exceptiontransform:114)rpyexc_raise
[flowgraph] (rpython.translator.exceptiontransform:128)rpyexc_reraise
[flowgraph] (rpython.translator.exceptiontransform:133)rpyexc_fetch_exception
[flowgraph] (rpython.translator.exceptiontransform:138)rpyexc_restore_exception
[flowgraph] (rpython.translator.exceptiontransform:539)rpyexc_get_exception_addr
[flowgraph] (rpython.translator.exceptiontransform:543)rpyexc_get_exc_value_addr
[flowgraph] (rpython.rtyper.rclass:1173)ll_inst_type
[rtyper] -=- specialized 25 more blocks -=-
[flowgraph] (rpython.memory.gctransform.transform:447)_ll_malloc_fixedsize
[flowgraph] (rpython.memory.gctransform.transform:454)_ll_malloc_fixedsize_zero
[flowgraph] (rpython.memory.gctransform.transform:470)_ll_malloc_varsize_no_length
[flowgraph] (rpython.memory.gctransform.transform:487)ll_malloc_varsize
[flowgraph] (rpython.memory.gctransform.transform:493)_ll_malloc_varsize_no_length_zero
[flowgraph] (rpython.memory.gctransform.transform:447)_ll_malloc_fixedsize
[flowgraph] (rpython.memory.gctransform.transform:447)_ll_malloc_fixedsize
[flowgraph] (rpython.memory.gctransform.transform:470)_ll_malloc_varsize_no_length
[flowgraph] (rpython.memory.gctransform.transform:487)ll_malloc_varsize
[flowgraph] (rpython.memory.gctransform.boehm:58)ll_identityhash
[flowgraph] (rpython.memory.gctransform.transform:461)_ll_compute_size
[flowgraph] (rpython.memory.gctransform.boehm:20)<lambda>
[flowgraph] (rpython.memory.gctransform.boehm:24)<lambda>
[flowgraph] (rpython.memory.gctransform.transform:461)_ll_compute_size
[rtyper] specializing: 500 / 543 blocks   (92%)
[rtyper] -=- specialized 57 more blocks -=-
[backendopt:removecasts] removed 1 cast_pointers in _ll_malloc_fixedsize__Signed
[backendopt:removecasts] removed 1 cast_pointers in _ll_malloc_fixedsize_zero__Signed
[backendopt:removecasts] removed 1 cast_pointers in _ll_malloc_varsize_no_length__Signed_Signed_Signed
[backendopt:removecasts] removed 1 cast_pointers in _ll_malloc_varsize_no_length_zero__Signed_Signed_Signed
[backendopt:removecasts] removed 1 cast_pointers in _ll_malloc_fixedsize__Signed
[backendopt:removecasts] removed 1 cast_pointers in _ll_malloc_fixedsize__Signed
[backendopt:removecasts] removed 1 cast_pointers in _ll_malloc_varsize_no_length__Signed_Signed_Signed
[backendopt:removecasts] removed 1 cast_pointers in _ll_compute_size__Signed_Signed_Signed
[backendopt:removecasts] removed 1 cast_pointers in _ll_compute_size__Signed_Signed_Signed
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining]    0.00             _ll_compute_size__Signed_Signed_Signed
[backendopt:inlining]    0.00             _ll_compute_size__Signed_Signed_Signed
[backendopt:inlining]    2.00                                           _lambda_
[backendopt:inlining]    2.00                                           _lambda_
[backendopt:inlining]   16.50 _ll_malloc_varsize_no_length__Signed_Signed_Signed
[backendopt:inlining]   16.50 _ll_malloc_varsize_no_length__Signed_Signed_Signed
[backendopt:inlining] inlined 8 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 0 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[flowgraph] (rpython.translator.c.genc:261)entrypoint_wrapper
[flowgraph] (rpython.rtyper.lltypesystem.rffi:854)charp2str
[flowgraph] (rpython.rtyper.lltypesystem.rffi:1030)charpsize2str
[flowgraph] (rpython.rtyper.lltypesystem.rstr:145)copy_raw_to_string
[flowgraph] (rpython.rtyper.rlist:487)ll_alloc_and_set
[flowgraph] (rpython.rlib.rarithmetic:741)int_force_ge_zero
[flowgraph] (rpython.rtyper.rlist:504)_ll_alloc_and_set_jit
[flowgraph] (rpython.rtyper.rlist:472)_ll_zero_or_null
[flowgraph] (rpython.rtyper.rlist:494)_ll_alloc_and_set_nojit
[flowgraph] (rpython.rtyper.lltypesystem.rlist:324)ll_newlist
[flowgraph] (rpython.rtyper.rlist:516)_ll_alloc_and_clear
[flowgraph] (rpython.rtyper.lltypesystem.rlist:377)ll_setitem_fast
[flowgraph] (?:11)_ll_alloc_and_set_nonnull_look_inside_iff
[flowgraph] (rpython.rtyper.rlist:528)<lambda>
[flowgraph] (rpython.rlib.jit:269)isconstant
[flowgraph] (rpython.rtyper.rlist:528)_ll_alloc_and_set_nonnull
[flowgraph] (?:2)_ll_alloc_and_set_nonnull_trampoline
[flowgraph] (rpython.rtyper.rlist:528)_ll_alloc_and_set_nonnull
[flowgraph] (?:1)memo__null_of_type_0
[flowgraph] (rpython.rtyper.rlist:726)ll_setitem_nonneg
[rtyper] specializing: 600 / 619 blocks   (96%)
[rtyper] -=- specialized 76 more blocks -=-
[rtyper] -=- specialized 0 more blocks -=-
[rtyper] -=- specialized 0 more blocks -=-
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining] inlined 0 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 0 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[c:database] GC transformer: finished helpers
[c:database] GC transformer: finished tables
[c:database] Inlining GC helpers and postprocessing
[c]      287 nodes  [ array: 31  boehm rtti: 17  func: 53  struct: 186 ]
[c:database] Completed
[translation:info] database for generating C source was created
[c586f27d26dec80] translation-task}
[translation:info] Generating c source...
[c586f27d26dec80] {translation-task
starting source_c 
[c:writing] structdef.h
[c:writing] forwarddecl.h
[c:writing] preimpl.h
[c:writing] data_rpython_flowspace.c
[c:writing] data_rpython_memory_gctransform.c
[c:writing] data_rpython_rlib.c
[c:writing] data_rpython_rtyper_lltypesystem.c
[c:writing] data_rpython_translator_c.c
[c:writing] data_rpython_translator_c_test.c
[c:writing] nonfuncnodes.c
[c:writing] data_rpython_rlib_1.c
[c:writing] implement.c
[c:writing] rpython_flowspace.c
[c:writing] rpython_memory_gctransform.c
[c:writing] rpython_rlib.c
[c:writing] rpython_rtyper.c
[c:writing] rpython_rtyper_lltypesystem.c
[c:writing] rpython_translator.c
[c:writing] rpython_translator_c.c
[c:writing] rpython_translator_c_test.c
[translation:info] written: d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.c
[c586f27e316c180] translation-task}
[translation:info] Compiling c source...
[c586f27e31e6280] {translation-task
starting compile_c 
[platform:execute] jom.exe  in d:\systemtemp\pytest\usession-main-2683\testing_17
[translation:info] created: d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe
[c586f2b87fdb180] translation-task}
[translation:info] usession directory: d:\systemtemp\pytest\usession-main-2683
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 0 0
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 0 1
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 0 2
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 0 3
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 0 4
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 0
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 1
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 2
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 3
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 4
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 5
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 6
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 7
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 8
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 9
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 10
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 11
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 12
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 13
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 14
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 15
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 16
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 17
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 18
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 19
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 20
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 21
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 22
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 23
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 24
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 25
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 26
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 27
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 28
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 29
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 30
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 31
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 32
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 33
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 34
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 35
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 36
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 37
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 38
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 39
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 40
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 41
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 42
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 43
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 44
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 45
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 46
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 47
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 48
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 49
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 50
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 51
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 52
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 53
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 54
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 55
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 56
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 57
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 58
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 59
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 60
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 61
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 62
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 63
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 64
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 65
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 66
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 67
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 68
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 69
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 70
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 71
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 72
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 73
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 74
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 75
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 76
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 77
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 78
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 79
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 80
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 81
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 82
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 83
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 84
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 85
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 86
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 87
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 88
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 89
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 90
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 91
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 92
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 93
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 94
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 95
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 96
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 97
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 98
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 99
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 100
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 111
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 122
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 133
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 144
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 155
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 166
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 177
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 188
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 199
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 210
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 221
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 232
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 243
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 1 254
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 0
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 1
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 2
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 3
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 4
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 5
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 6
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 7
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 8
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 9
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 10
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 11
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 12
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 13
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 14
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 15
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 16
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 17
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 18
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 19
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 20
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 21
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 22
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 23
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 24
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 25
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 26
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 27
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 28
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 29
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 30
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 31
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 32
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 33
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 34
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 35
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 36
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 37
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 38
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 39
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 40
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 41
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 42
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 43
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 44
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 45
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 46
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 47
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 48
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 49
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 50
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 51
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 52
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 53
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 54
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 55
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 56
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 57
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 58
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 59
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 60
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 61
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 62
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 63
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 64
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 65
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 66
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 2 67
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 0
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 1
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 2
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 3
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 4
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 5
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 6
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 7
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 8
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 9
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 10
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 11
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 12
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 13
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 14
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 15
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 16
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 17
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 18
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 19
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 20
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 21
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 22
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 23
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 24
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 25
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 26
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 27
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 28
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 29
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 30
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 31
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 32
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 33
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 34
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 35
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 36
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 37
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 38
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 39
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 40
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 41
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 42
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 43
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 44
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 45
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 46
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 47
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 48
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 49
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 50
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 51
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 52
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 53
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 54
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 55
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 56
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 57
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 58
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 59
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 60
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 61
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 62
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 63
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 64
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 65
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 66
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 67
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 68
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 69
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 70
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 71
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 72
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 73
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 74
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 75
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 76
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 77
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 78
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 79
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 80
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 81
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 82
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 83
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 84
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 85
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 86
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 87
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 88
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 89
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 90
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 91
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 92
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 93
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 94
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 95
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 96
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 97
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 98
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 99
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 100
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 111
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 122
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 133
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 144
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 155
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 166
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 177
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 188
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 199
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 210
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 221
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 232
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 243
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 254
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 265
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 276
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 287
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 298
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 309
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 320
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 331
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 342
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 353
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 364
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 375
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 386
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 397
[c:cmdexec] d:\systemtemp\pytest\usession-main-2683\testing_17\testing_17.exe 3 408
builder: rpython-win-x86-64 build #402
test: translator/c/test/test_genc/py/test_long_strings