python testrunner/pypyjit_tests.py in dir /buildbot/slave/pypy-c-jit-linux-aarch64/build (timeout 4000 secs) watching logfiles {'pytestLog': 'pypyjit_new.log'} argv: ['python', 'testrunner/pypyjit_tests.py'] environment: AUDITWHEEL_ARCH=aarch64 AUDITWHEEL_PLAT=manylinux_2_28_aarch64 AUDITWHEEL_POLICY=manylinux_2_28 DEVTOOLSET_ROOTPATH=/opt/rh/gcc-toolset-14/root HGDEMANDIMPORT=disable HOME=/home/buildworker HOSTNAME=9945328e1bf1 LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 LD_LIBRARY_PATH=/usr/local/lib:/opt/rh/gcc-toolset-14/root/usr/lib64:/opt/rh/gcc-toolset-14/root/usr/lib:/opt/rh/gcc-toolset-14/root/usr/lib64/dyninst:/opt/rh/gcc-toolset-14/root/usr/lib/dyninst OLDPWD=/buildbot/slave PATH=/tmp/venv/bin:/opt/clang/bin:/opt/rh/gcc-toolset-14/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/pypy2.7-v7.3.22-aarch64/bin PKG_CONFIG_PATH=/usr/local/lib/pkgconfig PS1=(venv) PWD=/buildbot/slave/pypy-c-jit-linux-aarch64/build PYPY_LOCALBASE=/usr/local PYPY_MAKE_PORTABLE=1 SHLVL=0 SSL_CERT_FILE=/opt/_internal/certs.pem TERM=xterm TMPDIR=/tmp/pytest VIRTUAL_ENV=/tmp/venv container=podman using PTY: False ============================= test session starts ============================== platform linux2 -- Python 2.7.18[pypy-7.3.22-final], pytest-2.9.2, py-1.4.29, pluggy-0.3.1 hypothesis profile 'default' -> deadline=None, database=DirectoryBasedExampleDatabase('/buildbot/slave/pypy-c-jit-linux-aarch64/build/.hypothesis/examples') pytest-2.9.2 from /buildbot/slave/pypy-c-jit-linux-aarch64/build/pytest.pyc rootdir: /buildbot/slave/pypy-c-jit-linux-aarch64/build, inifile: pytest.ini plugins: hypothesis-4.39.3 collected 1194 items / 1 skipped pypy/module/pypyjit/test_pypy_c/test_00_model.py ........................ pypy/module/pypyjit/test_pypy_c/test_alloc.py ................................................... pypy/module/pypyjit/test_pypy_c/test_array.py ....s... pypy/module/pypyjit/test_pypy_c/test_boolrewrite.py ...................................................................................................................................................................................................................................................................................................................................... pypy/module/pypyjit/test_pypy_c/test_buffers.py F. pypy/module/pypyjit/test_pypy_c/test_bug.py . pypy/module/pypyjit/test_pypy_c/test_call.py .........................s. pypy/module/pypyjit/test_pypy_c/test_capture_locals.py . pypy/module/pypyjit/test_pypy_c/test_cprofile.py . pypy/module/pypyjit/test_pypy_c/test_exception.py ..... pypy/module/pypyjit/test_pypy_c/test_ffi.py s..s...... pypy/module/pypyjit/test_pypy_c/test_generators.py ... pypy/module/pypyjit/test_pypy_c/test_getframe.py .. pypy/module/pypyjit/test_pypy_c/test_globals.py . pypy/module/pypyjit/test_pypy_c/test_import.py .... pypy/module/pypyjit/test_pypy_c/test_instance.py ...FFFFFFFFFFFF pypy/module/pypyjit/test_pypy_c/test_intbound.py FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF pypy/module/pypyjit/test_pypy_c/test_itertools.py FF pypy/module/pypyjit/test_pypy_c/test_jitlogparser.py F pypy/module/pypyjit/test_pypy_c/test_math.py FFsFF pypy/module/pypyjit/test_pypy_c/test_micronumpy.py ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss pypy/module/pypyjit/test_pypy_c/test_min_max.py FFF pypy/module/pypyjit/test_pypy_c/test_misc.py FFFFFFFFFFFFFFFFFFFFFFF pypy/module/pypyjit/test_pypy_c/test_shift.py FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF pypy/module/pypyjit/test_pypy_c/test_string.py FFFFFFxFFFFFFFFFFFF pypy/module/pypyjit/test_pypy_c/test_struct.py FFFFFF pypy/module/pypyjit/test_pypy_c/test_thread.py FFF pypy/module/pypyjit/test_pypy_c/test_weakref.py F =================================== FAILURES =================================== __________________________ TestBuffers.test_re_match ___________________________ self = <pypy.module.pypyjit.test_pypy_c.test_buffers.TestBuffers object at 0x0000000015a0abf0> def test_re_match(self): def main(n): import re import array p = re.compile(b'.+') a = array.array('B', b'test' * 1000) i = 0 while i < n: i += 1 p.match(a) # ID: match return i log = self.run(main, [1000]) assert log.result == 1000 loop, = log.loops_by_filename(self.filepath) > assert loop.match_by_id('match', """ guard_not_invalidated(descr=...) p71 = getfield_gc_r(p15, descr=...) # check that the pattern is not None and a W_BytesObject guard_nonnull_class(p71, ConstClass(W_BytesObject), descr=...) i74 = instance_ptr_eq(_, p71) guard_false(i74, descr=...) i65 = getfield_gc_i(p18, descr=...) i67 = int_gt(0, i65) guard_false(i67, descr=...) i69 = int_gt(#, i65) guard_true(i69, descr=...) --TICK-- """) pypy/module/pypyjit/test_pypy_c/test_buffers.py:19: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ pypy/module/pypyjit/test_pypy_c/model.py:182: in match_by_id return matcher.match(expected_src, ignore_ops=ignore_ops) pypy/module/pypyjit/test_pypy_c/model.py:524: in match self.match_loop(expected_ops, ignore_ops) pypy/module/pypyjit/test_pypy_c/model.py:500: in match_loop self.match_op(op, exp_op) pypy/module/pypyjit/test_pypy_c/model.py:409: in match_op self._assert(op.name == exp_opname, "operation mismatch") _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.model.OpMatcher object at 0x0000000015f5e4f0> cond = False, message = 'operation mismatch' def _assert(self, cond, message): if not cond: > raise InvalidMatch(message, frame=sys._getframe(1)) E InvalidMatch: operation mismatch pypy/module/pypyjit/test_pypy_c/model.py:402: InvalidMatch ----------------------------- Captured stdout call ----------------------------- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Loops don't match ================= loop id = 'match' ('operation mismatch',) <could not determine information> Ignore ops: [] Got: guard_not_invalidated(descr=<Guard0xffff8d61d730>) p73 = getfield_gc_r(p14, descr=<FieldP pypy.module._sre.interp_sre.W_SRE_Pattern.inst_w_pattern 56>) guard_nonnull_class(p73, ConstClass(W_BytesObject), descr=<Guard0xffff8d5f09b0>) i76 = instance_ptr_eq(ConstPtr(ptr75), p73) guard_false(i76, descr=<Guard0xffff8d61d790>) i77 = getfield_gc_i(p16, descr=<FieldS pypy.module.array.interp_array.W_ArrayBase.inst__exports 16>) ===== HERE ===== i79 = int_add(i77, 1) i80 = getfield_gc_i(p16, descr=<FieldS pypy.module.array.interp_array.W_ArrayBase.inst_len 40>) i82 = int_gt(0, i80) guard_false(i82, descr=<Guard0xffff8d61d7f0>) i84 = int_gt(9223372036854775807, i80) guard_true(i84, descr=<Guard0xffff8d61d850>) guard_not_invalidated(descr=<Guard0xffff8d61d910>) i98 = getfield_raw_i(281473138761320, descr=<FieldS pypysig_long_struct_inner.c_value 0>) i100 = int_lt(i98, 0) guard_false(i100, descr=<Guard0xffff8d61d970>) Expected: guard_not_invalidated(descr=...) p71 = getfield_gc_r(p15, descr=...) # check that the pattern is not None and a W_BytesObject guard_nonnull_class(p71, ConstClass(W_BytesObject), descr=...) i74 = instance_ptr_eq(_, p71) guard_false(i74, descr=...) i65 = getfield_gc_i(p18, descr=...) i67 = int_gt(0, i65) guard_false(i67, descr=...) i69 = int_gt(#, i65) guard_true(i69, descr=...) guard_not_invalidated? ticker0 = getfield_raw_i(#, descr=<FieldS pypysig_long_struct_inner.c_value .*>) ticker_cond0 = int_lt(ticker0, 0) guard_false(ticker_cond0, descr=...) ______________________ TestInstance.test_mutate_class_int ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x000000001150a5d0> def test_mutate_class_int(self): def fn(n): class A(object): count = 1 def __init__(self, a): self.a = a def f(self): return self.count i = 0 a = A(1) while i < n: A.count += 1 # ID: mutate i = a.f() # ID: meth1 return i # log = self.run(fn, [1000], threshold=10) assert log.result == 1000 # # first, we test the entry bridge # ------------------------------- > entry_bridge, = log.loops_by_filename(self.filepath, is_entry_bridge=True) E ValueError: expected length 1, got 0 pypy/module/pypyjit/test_pypy_c/test_instance.py:108: ValueError ________________________ TestInstance.test_mutate_class ________________________ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x000000001248b600> def test_mutate_class(self): def fn(n): class LL(object): def __init__(self, n): self.n = n class A(object): count = None def __init__(self, a): self.a = a def f(self): return self.count i = 0 a = A(1) while i < n: A.count = LL(A.count) # ID: mutate a.f() # ID: meth1 i += 1 return i # > log = self.run(fn, [1000], threshold=10) pypy/module/pypyjit/test_pypy_c/test_instance.py:152: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x000000001248b600> func_or_src = <function fn at 0x0000000015be25c0>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 10} src = <py._code.source.Source object at 0x000000001248b830>, funcname = 'fn' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_mutate_class.py', mode 'w' at 0x0000000013056f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_mutate_class.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestInstance.test_python_contains _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x0000000014b94bb8> def test_python_contains(self): def main(): class A(object): def __contains__(self, v): return True i = 0 a = A() while i < 100: i += i in a # ID: contains b = 0 # to make sure that JUMP_ABSOLUTE is not part of the ID > log = self.run(main, [], threshold=80) pypy/module/pypyjit/test_pypy_c/test_instance.py:206: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x0000000014b94bb8> func_or_src = <function main at 0x0000000015be33d0>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 80} src = <py._code.source.Source object at 0x0000000014b94d40>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_python_contains.py', mode 'w' at 0x00000000130575a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_python_contains.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestInstance.test_id_compare_optimization ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x00000000123eee20> def test_id_compare_optimization(self): def main(): class A(object): pass # i = 0 a = A() while i < 300: new_a = A() if new_a != a: # ID: compare pass i += 1 return i # > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_instance.py:228: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x00000000123eee20> func_or_src = <function main at 0x0000000013f80890>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000123eee58>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_id_compare_optimization.py', mode 'w' at 0x0000000013057a20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_id_compare_optimization.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________________ TestInstance.test_super ____________________________ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x00000000163b3c58> def test_super(self): def main(): class A(object): def m(self, x): return x + 1 class B(A): def m(self, x): return super(B, self).m(x) i = 0 while i < 300: i = B().m(i) return i > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_instance.py:245: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x00000000163b3c58> func_or_src = <function main at 0x0000000013f81448>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000163b3c90>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_super.py', mode 'w' at 0x0000000015a622a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_super.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestInstance.test_super_no_args ________________________ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x000000001701a8a8> def test_super_no_args(self): def main(): class A(object): def m(self, x): return x + 1 class B(A): def m(self, x): return super().m(x) i = 0 while i < 300: i = B().m(i) return i > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_instance.py:271: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x000000001701a8a8> func_or_src = <function main at 0x0000000013f81da8>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000001701ab10>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_super_no_args.py', mode 'w' at 0x0000000015a62ca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_super_no_args.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _________________ TestInstance.test_float_instance_field_read __________________ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x0000000016d8f168> def test_float_instance_field_read(self): def main(): class A(object): def __init__(self, x, y): self.x = float(x) self.y = float(y) l = [A(i, i * 5) for i in range(2000)] res = 0 for x in l: res += x.x + x.y # ID: get return res > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_instance.py:304: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x0000000016d8f168> func_or_src = <function main at 0x00000000180da638>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000016d8ef38>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_float_instance_field_read.py', mode 'w' at 0x0000000015a633a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_float_instance_field_read.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _________________ TestInstance.test_float_instance_field_write _________________ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x0000000017329ad0> def test_float_instance_field_write(self): def main(): class A(object): def __init__(self, x): self.x = float(x) l = [A(i) for i in range(2000)] for a in l: a.x += 3.4 # ID: set > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_instance.py:345: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x0000000017329ad0> func_or_src = <function main at 0x00000000180db880>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000017329b08>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_float_instance_field_write.py', mode 'w' at 0x0000000015a635a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_float_instance_field_write.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestInstance.test_namedtuple_construction ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x000000001516b590> def test_namedtuple_construction(self): def main(): from collections import namedtuple A = namedtuple("A", "x y") res = 0 i = 0 while i < 2000: res += A(i, 0).x i += 1 > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_instance.py:388: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x000000001516b590> func_or_src = <function main at 0x000000001638a200>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000001516b7c0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_namedtuple_construction.py', mode 'w' at 0x0000000015a63ca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_namedtuple_construction.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestInstance.test_add_instance_attr_big ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x000000001663bb78> def test_add_instance_attr_big(self): def main(): class A(object): pass l = [] for i in range(10000): a = A() a.attr1 = 'a' a.attr2 = 'a' a.attr3 = 'a' a.attr4 = 'a' a.attr5 = 'a' a.attr6 = 'a' l.append(a) for a in l: a.attr7 = 'b' # ID: grow > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_instance.py:421: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x000000001663bb78> func_or_src = <function main at 0x000000001638b088>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000001663bbb0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_add_instance_attr_big.py', mode 'w' at 0x0000000013544120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_add_instance_attr_big.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _________________ TestInstance.test_add_instance_attr_unboxed __________________ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x00000000177f5130> def test_add_instance_attr_unboxed(self): def main(): class A(object): pass l = [] for i in range(10000): a = A() a.attr1 = 'a' a.attr2 = 'a' a.attr3 = 'a' a.attr4 = 'a' a.attr5 = 14 l.append(a) for a in l: a.attr7 = 12 # ID: grow > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_instance.py:443: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x00000000177f5130> func_or_src = <function main at 0x000000001638b9e8>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000177f5168>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_add_instance_attr_unboxed.py', mode 'w' at 0x00000000135447a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_add_instance_attr_unboxed.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestInstance.test_aliasing_via_class _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x00000000181c3a28> def test_aliasing_via_class(self): def main(): class A(object): pass class B(object): pass a = A() a.x = "hallo" l1 = [B(), B()] l1[0].x = 'hallo' l1[1].x = 'tchüss' l = [None, "abc"] res = 0 for i in range(1000): b = l1[i & 1] s = b.x # read b.x res += len(s) a.x = l[i & 1] # write a.x, but it cannot alias b.x because the classes are different # the following b.x can be reused from above res += len(b.x) # ID: getattr2 return res > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_instance.py:469: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_instance.TestInstance object at 0x00000000181c3a28> func_or_src = <function main at 0x0000000012ea0020>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000181c38d8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_aliasing_via_class.py', mode 'w' at 0x0000000013545520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_aliasing_via_class.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestIntbound.test_intbound_simple[0] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001535fda8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013545820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestIntbound.test_intbound_simple[1] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001542c870>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013545d20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestIntbound.test_intbound_simple[2] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014c0dd38>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013fd4220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestIntbound.test_intbound_simple[3] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014468598>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013fd46a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestIntbound.test_intbound_simple[4] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017446090>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013fd4ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestIntbound.test_intbound_simple[5] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000143da678>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013fd4d20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestIntbound.test_intbound_simple[6] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013f34918>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013fd50a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestIntbound.test_intbound_simple[7] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016b67c90>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013fd5520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestIntbound.test_intbound_simple[8] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017ab7590>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013fd5820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestIntbound.test_intbound_simple[9] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017b85de0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013fd5ca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[10] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017c23d00>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cc4020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[11] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017cbb948>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cc4420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[12] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017d7d1a0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cc4720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[13] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000182e4100>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cc5220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[14] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018380ec8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cc5620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[15] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000184077f8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cc5a20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[16] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000184c11a0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cc5d20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[17] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001854b408>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cd8520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[18] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018630c98>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cd89a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[19] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000186cc448>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cd8da0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[20] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018745a60>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cd9120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[21] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018901c20>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cd9620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[22] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018989a60>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cd98a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[23] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i < 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018a1e100>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013cd9c20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[24] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018ace448>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013d2e0a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[25] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018b5c640>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013d2e4a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[26] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018bd3ad0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013d2eb20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[27] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018c938a0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013d2eca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[28] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018d27ef8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013d2f020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[29] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018e02250>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013d2f8a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[30] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018ea0090>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013d2fca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[31] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018f17b78>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000164280a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[32] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000190d3f30>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000164284a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[33] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019176678>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000016428b20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[34] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019244790>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000016428ea0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[35] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000192e8678>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000164294a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[36] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019372758>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000016429aa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[37] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019520e90>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000016429f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[38] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000195b5168>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000013b4e320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[39] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019692b48>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000019646420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[40] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000144ec410>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001798e120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[41] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000195ce758>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001798e4a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[42] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000159336e0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001798e9a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[43] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013e6b088>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001798ed20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[44] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000164d54b0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001798f8a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[45] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 3:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015b8ebf0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000016e780a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[46] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013656de8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000016e78620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[47] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 7:\n...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000146b0288>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000016e78da0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[48] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016104b10>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000016e79120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[49] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000c561ef8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000016e79520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[50] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016d5caa0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000016e79aa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[51] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011c6ed40>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000016e79da0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[52] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000af3c800>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000140981a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[53] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000c978598>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000014098720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[54] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000eb9eb48>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000140988a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[55] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000efefb40>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000014098c20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[56] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000f504bf0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000140990a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[57] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000fcb1e18>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000014099420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[58] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010163638>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000140997a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[59] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000106c2218>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000014099b20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[60] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010a67ad0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001655a0a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[61] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010e6dde0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001655a5a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[62] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010f299b8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001655a920> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[63] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001100de88>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001655afa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[64] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011972330>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001655b420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[65] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000109efd00>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001655b7a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[66] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000adbf0c0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001655bb20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[67] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000e2909f8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001655bea0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[68] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012304790>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012d2e420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[69] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012551c58>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012d2e7a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[70] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001284cd78>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012d2eba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[71] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i <= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000132cc368>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012d2ef20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[72] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000132fd670>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012d2f420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[73] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014ca9868>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012d2f9a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[74] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000158334b0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012d2fe20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[75] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014b08598>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000156303a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[76] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001663cf00>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015630720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[77] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012851948>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015630c20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[78] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012a7d6e0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000156310a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[79] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016cfb478>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015631420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[80] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001814edb0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000156317a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[81] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000134649c0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015631c20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[82] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015c85130>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015631f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[83] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001558aec8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015efa320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[84] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013250b80>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015efa6a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[85] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001666a950>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015efaaa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[86] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001689f210>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015efae20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[87] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000f40c250>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015efb220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[88] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000177a62f8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015efb5a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[89] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000145bd830>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015efba20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[90] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000120d6560>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015efbda0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[91] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001332c368>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000163fe1a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[92] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015ddbbb0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000163fe520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[93] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012e24138>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000163fec20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[94] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013cb19f0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000163fefa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[95] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i >= 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012c5cd08>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000163ff320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[96] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015d5f088>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000163ff6a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[97] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011db4f00>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000163ffc20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[98] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001292d2f0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015540020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[99] _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012ab6790>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000155403a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[100] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000139ddbe8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015540720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[101] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016fcad08>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015540b20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[102] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014094e90>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015540ea0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[103] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000150706e8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000155411a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[104] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017335520>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000155415a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[105] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000ade8720>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015541b20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[106] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015a8c0c8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000015541d20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[107] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011377750>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012c42120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[108] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015678170>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012c424a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[109] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015233980>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012c42820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[110] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000155ad360>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012c42f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[111] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015f10758>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012c43420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[112] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015f5f8a0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012c43820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[113] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010edfa98>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012c43ca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[114] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011422cd0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000151fc020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[115] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000140d0e58>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000151fc3a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[116] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017680b10>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000151fc720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[117] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001825ee90>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000151fcaa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[118] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001445e4f0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000151fcf20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[119] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000172dfa28>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000151fd2a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[120] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017cba410>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000151fd620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[121] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018370a30>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000151fdba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[122] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018842fa8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000151fdd20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[123] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018b5db08>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000121442a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[124] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018e90218>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012144620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[125] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000191b74e8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000121449a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[126] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016629718>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012144ea0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[127] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014c78d40>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000121452a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[128] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014b6a838>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012145620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[129] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000176a3018>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012145ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[130] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017b00a30>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x0000000012145d20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[131] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014ba0330>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001783a120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[132] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001546cf38>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001783a520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[133] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001859d018>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001783a8a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[134] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001824bef8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001783aca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[135] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001840b520>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001783b020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[136] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017498b80>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001783b3a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[137] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018ade138>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001783b720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[138] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000186869f8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x000000001783bba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[139] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017d85cc8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000160b80a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[140] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018dc52f0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000160b8420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[141] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 3:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018a00950>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000160b87a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[142] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018465de0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000160b8b20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestIntbound.test_intbound_simple[143] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be671a0> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 7:\...x:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001851a9f8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py', mode 'w' at 0x00000000160b8f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestIntbound.test_intbound_addsub_mix[0] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017d107c8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000160b9320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestIntbound.test_intbound_addsub_mix[1] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018ca6e90>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000160b97a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestIntbound.test_intbound_addsub_mix[2] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001926af00>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000160b9ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestIntbound.test_intbound_addsub_mix[3] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018c17c20>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000156b01a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestIntbound.test_intbound_addsub_mix[4] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016de5718>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000156b05a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestIntbound.test_intbound_addsub_mix[5] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018b08e58>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000156b0a20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestIntbound.test_intbound_addsub_mix[6] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019310cd0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000156b0ea0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestIntbound.test_intbound_addsub_mix[7] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001876d3d0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000156b13a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestIntbound.test_intbound_addsub_mix[8] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017b9abb8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000156b17a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestIntbound.test_intbound_addsub_mix[9] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000185ea1a8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000156b1ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[10] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000189d56e0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x000000001616c020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[11] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018b69248>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x000000001616c520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[12] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000190f8de8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x000000001616c8a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[13] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016a03328>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x000000001616cca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[14] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000188e6988>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x000000001616d120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[15] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018336e58>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x000000001616d620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[16] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018e1cde8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x000000001616d9a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[17] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018ff6608>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x000000001616de20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[18] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000190b8410>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000012f4e2a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[19] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016b5fe18>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000012f4e720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[20] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001887e720>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000188881a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[21] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019731ef8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000188885a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[22] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000197c54b0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000196461a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[23] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019693478>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000019646620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[24] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001809def8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000019646b20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[25] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015945e18>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000019646f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[26] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016120aa0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000019647320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[27] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000164fa448>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000019647720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[28] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015b5ec98>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000019647b20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[29] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017245750>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000016428120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[30] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001757f4e8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000016428520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[31] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013eb1830>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000016428c20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[32] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i + 1 > 2:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000ffffb18ef248>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000016429020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[33] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000b77ac28>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000016429b20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[34] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000eadb408>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000016429da0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[35] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000ef93600>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013d2e220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[36] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000f3c84f0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013d2e7a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[37] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000f6d6800>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013d2ec20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[38] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010b05750>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013d2f220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[39] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010d274e8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013d2f720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[40] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010e00db0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013d2fb20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[41] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010e3c218>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013cd81a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[42] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011286950>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013cd87a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[43] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 + i > 4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000116542c0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013cd8ca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[44] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011863018>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013cd9120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[45] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011aed670>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013cd94a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[46] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011f2b248>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013cd9920> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[47] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000122492b8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013cd9d20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[48] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000121a42f8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013cc41a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[49] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000124e4c28>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013cc4620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[50] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012ce7520>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013cc51a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[51] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013d67788>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013cc5720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[52] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012e6c720>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013cc5ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[53] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013974db0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013fd40a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[54] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i - 1 > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015739c90>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013fd44a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[55] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016000560>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013fd4920> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[56] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000164cc640>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013fd4e20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[57] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000171b34e8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013fd52a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[58] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014297478>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013fd56a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[59] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015db32f0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013fd5aa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[60] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015c84e58>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000135440a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[61] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001558a790>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013544420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[62] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000175bfbe8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000135449a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[63] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016eda250>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013545020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[64] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001810b1d8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013545520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[65] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i > 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000f40c090>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013545a20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[66] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000177a6758>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013545e20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[67] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014e72a30>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015a62320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[68] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000168dc058>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015a62920> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[69] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010dce218>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015a62f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[70] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000164fe410>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015a635a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[71] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001655ce90>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015a639a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[72] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000135b9be8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015a63f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[73] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015bdeb48>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000130563a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[74] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000149b5210>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000130567a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[75] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001264db08>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013056c20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[76] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if 1 - i < -3:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012713bb0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013057220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[77] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013bdfbe8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000130576a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[78] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001571c480>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000013057ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[79] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000135a17f8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015f640a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[80] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000159fab80>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015f64620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[81] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015be5210>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015f64a20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[82] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000174d17c0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015f65120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[83] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000135f99b8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015f65520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[84] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016e62b10>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015f65920> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[85] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012f636e0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015f65da0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[86] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014eacfa8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000011ff0220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[87] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000151fe8a8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000011ff0620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[88] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012e7f8d8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000011ff0a20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[89] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015f10100>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000011ff1120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[90] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000117f7718>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000011ff1aa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[91] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010ede758>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000011ff1f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[92] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017523ad0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000012458420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[93] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000140bac98>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000012458820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[94] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000176b1868>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000012458c20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[95] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000181c37c0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000012459120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[96] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014468bb8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000124594a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[97] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016b67f30>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000124598a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[98] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i == 5:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017d7ccd0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000012459ca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[99] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001854a6e8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000016cde120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[100] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019177b78>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000016cde5a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[101] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019521478>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000016cde9a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[102] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014f99b40>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000016cdef20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[103] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001823e950>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000016cdf320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[104] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018687a98>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000016cdf7a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[105] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015d525d0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000016cdfd20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[106] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012acbbb0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000010da21a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[107] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000176eb210>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000010da25a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[108] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000141ae790>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000010da29a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[109] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if i != 1:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000139a41e0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000010da2e20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[110] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017b16f70>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000010da3320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[111] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014c7c800>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000010da37a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[112] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014babef8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000010da3ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[113] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018283590>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000140ea020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[114] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001845d050>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000140ea420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[115] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017dbf520>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000140ea9a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[116] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018d80ec8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000140ead20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[117] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018a2a480>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000140eb120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[118] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000186db9f0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000140eb520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[119] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013f15280>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x00000000140ebaa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestIntbound.test_intbound_addsub_mix[120] __________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x000000000be66598> func_or_src = '\n def f(i):\n a, b = 3, 3\n if -2 * i < -4:\n ... for i in idx:\n res[f(i)] += 1\n return res\n\n ' args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000196c8a68>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py', mode 'w' at 0x0000000015282720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_mix.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ________________________ TestIntbound.test_intbound_gt _________________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x0000000018781168> def test_intbound_gt(self): def main(n): i, a, b = 0, 0, 0 while i < n: if i > -1: a += 1 if i > -2: b += 1 i += 1 return (a, b) # > log = self.run(main, [300]) pypy/module/pypyjit/test_pypy_c/test_intbound.py:88: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x0000000018781168> func_or_src = <function main at 0x00000000174efad8>, args = [300] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000018781328>, funcname = 'main' arglist = '300' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_gt.py', mode 'w' at 0x00000000152828a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_gt.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestIntbound.test_intbound_sub_lt _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x00000000192a8480> def test_intbound_sub_lt(self): def main(): i, a = 0, 0 while i < 300: if i - 10 < 295: a += 1 i += 1 return a # > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_intbound.py:112: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x00000000192a8480> func_or_src = <function main at 0x000000001753c278>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000192a8640>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_sub_lt.py', mode 'w' at 0x0000000015282c20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_sub_lt.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestIntbound.test_intbound_addsub_ge _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x0000000016e457f8> def test_intbound_addsub_ge(self): def main(n): i, a, b = 0, 0, 0 while i < n: if i + 5 >= 5: a += 1 if i - 1 >= -1: b += 1 i += 1 return (a, b) # > log = self.run(main, [300]) pypy/module/pypyjit/test_pypy_c/test_intbound.py:138: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x0000000016e457f8> func_or_src = <function main at 0x000000001605e188>, args = [300] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000016e45a28>, funcname = 'main' arglist = '300' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_ge.py', mode 'w' at 0x0000000015282f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addsub_ge.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestIntbound.test_intbound_addmul_ge _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x00000000153a3d00> def test_intbound_addmul_ge(self): def main(n): i, a, b = 0, 0, 0 while i < 300: if i + 5 >= 5: a += 1 if 2 * i >= 0: b += 1 i += 1 return (a, b) # > log = self.run(main, [300]) pypy/module/pypyjit/test_pypy_c/test_intbound.py:167: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x00000000153a3d00> func_or_src = <function main at 0x00000000171a23e0>, args = [300] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000153a3ef8>, funcname = 'main' arglist = '300' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addmul_ge.py', mode 'w' at 0x0000000015283220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_addmul_ge.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ________________________ TestIntbound.test_intbound_eq _________________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x0000000018ed1440> def test_intbound_eq(self): def main(a, n): i, s = 0, 0 while i < 300: if a == 7: s += a + 1 elif i == 10: s += i else: s += 1 i += 1 return s # > log = self.run(main, [7, 300]) pypy/module/pypyjit/test_pypy_c/test_intbound.py:197: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x0000000018ed1440> func_or_src = <function main at 0x0000000015262098>, args = [7, 300] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000018ed1478>, funcname = 'main' arglist = '7, 300' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_eq.py', mode 'w' at 0x0000000015283520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_eq.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ________________________ TestIntbound.test_intbound_mul ________________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x00000000143f74e8> def test_intbound_mul(self): def main(a): i, s = 0, 0 while i < 300: assert i >= 0 if 2 * i < 30000: s += 1 else: s += a i += 1 return s # > log = self.run(main, [7]) pypy/module/pypyjit/test_pypy_c/test_intbound.py:228: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x00000000143f74e8> func_or_src = <function main at 0x00000000152625c0>, args = [7] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000143f7520>, funcname = 'main' arglist = '7' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_mul.py', mode 'w' at 0x00000000152837a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_intbound_mul.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________________ TestIntbound.test_assert ___________________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x00000000192eb788> def test_assert(self): def main(a): i, s = 0, 0 while i < 300: assert a == 7 s += a + 1 i += 1 return s > log = self.run(main, [7]) pypy/module/pypyjit/test_pypy_c/test_intbound.py:251: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x00000000192eb788> func_or_src = <function main at 0x00000000152aea70>, args = [7] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000192eb638>, funcname = 'main' arglist = '7' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_assert.py', mode 'w' at 0x0000000015283c20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_assert.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________________ TestIntbound.test_xor _____________________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x00000000188ff788> def test_xor(self): def main(b): a = sa = 0 while a < 300: if a > 0: # Specialises the loop pass if b > 10: pass if a^b >= 0: # ID: guard sa += 1 sa += a^a # ID: a_xor_a a += 1 return sa > log = self.run(main, [11]) pypy/module/pypyjit/test_pypy_c/test_intbound.py:279: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x00000000188ff788> func_or_src = <function main at 0x00000000152af4c0>, args = [11] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000188ff910>, funcname = 'main' arglist = '11' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_xor.py', mode 'w' at 0x0000000015283da0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_xor.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestIntbound.test_abs_branch_free _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x0000000019382bb8> def test_abs_branch_free(self): import sys def main(start, stop): res = 0 for i in range(start, stop): res += abs(i) # ID: abs return res > log = self.run(main, [-10000, 10000]) pypy/module/pypyjit/test_pypy_c/test_intbound.py:309: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x0000000019382bb8> func_or_src = <function main at 0x00000000127c67a0>, args = [-10000, 10000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000019382de8>, funcname = 'main' arglist = '-10000, 10000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_abs_branch_free.py', mode 'w' at 0x000000001528e120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_abs_branch_free.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________ TestIntbound.test_mul_int_long_uses_int_shortcut _______________ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x0000000019048138> def test_mul_int_long_uses_int_shortcut(self): def main(start, stop): longvalue = 2**100 res = 0 for i in range(start, stop): longvalue = i * longvalue # ID: mul return res > log = self.run(main, [-10000, 10000]) pypy/module/pypyjit/test_pypy_c/test_intbound.py:332: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_intbound.TestIntbound object at 0x0000000019048138> func_or_src = <function main at 0x00000000127c6f98>, args = [-10000, 10000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000019048170>, funcname = 'main' arglist = '-10000, 10000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_mul_int_long_uses_int_shortcut.py', mode 'w' at 0x000000001528e4a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_mul_int_long_uses_int_shortcut.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ________________________ TestMisc.test_islice_step_is_1 ________________________ self = <pypy.module.pypyjit.test_pypy_c.test_itertools.TestMisc object at 0x0000000013e58058> def test_islice_step_is_1(self): def f1(n): import itertools l = [1] * 10000 res = 0 for x in itertools.islice(l, n): res += x return res > log = self.run(f1, [2117]) pypy/module/pypyjit/test_pypy_c/test_itertools.py:14: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_itertools.TestMisc object at 0x0000000013e58058> func_or_src = <function f1 at 0x0000000013e42020>, args = [2117] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000013e58090>, funcname = 'f1' arglist = '2117' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_islice_step_is_1.py', mode 'w' at 0x0000000013e38020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_islice_step_is_1.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestMisc.test_islice_uses_greenkey ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_itertools.TestMisc object at 0x0000000013e58368> def test_islice_uses_greenkey(self): def f1(n): def f(a): return a + 1 def g(a): return a + 2 import itertools l = [1] * 10000 res = 0 for x in itertools.islice(map(f, l), 0, n, 2000): res += x for x in itertools.islice(map(g, l), 0, n, 2000): res += x return res > log = self.run(f1, [2117]) pypy/module/pypyjit/test_pypy_c/test_itertools.py:34: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_itertools.TestMisc object at 0x0000000013e58368> func_or_src = <function f1 at 0x0000000013e42110>, args = [2117] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000013e583a0>, funcname = 'f1' arglist = '2117' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_islice_uses_greenkey.py', mode 'w' at 0x0000000013e381a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_islice_uses_greenkey.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________________ TestLogParser.test ______________________________ self = <pypy.module.pypyjit.test_pypy_c.test_jitlogparser.TestLogParser object at 0x0000000018c30b10> def test(self): def fn_with_bridges(N): def is_prime(x): for y in range(2, x): if x % y == 0: return False return True result = 0 for x in range(N): if x % 3 == 0: result += 5 elif x % 5 == 0: result += 3 elif is_prime(x): result += x elif x == 99: result *= 2 return result # N = 10000 > _log = self.run(fn_with_bridges, [N]) pypy/module/pypyjit/test_pypy_c/test_jitlogparser.py:34: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_jitlogparser.TestLogParser object at 0x0000000018c30b10> func_or_src = <function fn_with_bridges at 0x000000001889c020>, args = [10000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000018c30b48> funcname = 'fn_with_bridges', arglist = '10000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test.py', mode 'w' at 0x00000000188880a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________________ TestMath.test_log _______________________________ self = <pypy.module.pypyjit.test_pypy_c.test_math.TestMath object at 0x0000000013dfa790> def test_log(self): def main(n): import math i = 1 s = 0.0 while i < n: s += math.log(i) - math.log10(i) i += 1 return s > log = self.run(main, [500]) pypy/module/pypyjit/test_pypy_c/test_math.py:16: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_math.TestMath object at 0x0000000013dfa790> func_or_src = <function main at 0x000000001889c368>, args = [500] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000013dfa7c8>, funcname = 'main' arglist = '500' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_log.py', mode 'w' at 0x00000000188883a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_log.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________________ TestMath.test_sin_cos _____________________________ self = <pypy.module.pypyjit.test_pypy_c.test_math.TestMath object at 0x00000000195c8d40> def test_sin_cos(self): def main(n): import math i = 1 s = 0.0 while i < n: s += math.sin(i) - math.cos(i) i += 1 return s > log = self.run(main, [500]) pypy/module/pypyjit/test_pypy_c/test_math.py:45: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_math.TestMath object at 0x00000000195c8d40> func_or_src = <function main at 0x000000001889c908>, args = [500] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000195c8d78>, funcname = 'main' arglist = '500' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_sin_cos.py', mode 'w' at 0x0000000018888aa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_sin_cos.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________________ TestMath.test_pow_two _____________________________ self = <pypy.module.pypyjit.test_pypy_c.test_math.TestMath object at 0x00000000195a5210> def test_pow_two(self): def main(n): s = 0.123 while n > 0: s -= s ** 2 # ID: pow n -= 1 return s > log = self.run(main, [500]) pypy/module/pypyjit/test_pypy_c/test_math.py:101: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_math.TestMath object at 0x00000000195a5210> func_or_src = <function main at 0x000000001889cbd8>, args = [500] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000195a5638>, funcname = 'main' arglist = '500' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_pow_two.py', mode 'w' at 0x0000000018888d20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_pow_two.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _________________________ TestMath.test_complex_power __________________________ self = <pypy.module.pypyjit.test_pypy_c.test_math.TestMath object at 0x0000000010298d08> def test_complex_power(self): def main(n, x): s = 0.123+0.1j while n > 0: s -= s ** x # ID: pow n -= 1 return s > log = self.run(main, [500, 2]) pypy/module/pypyjit/test_pypy_c/test_math.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_math.TestMath object at 0x0000000010298d08> func_or_src = <function main at 0x000000001889cf20>, args = [500, 2] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000010298d40>, funcname = 'main' arglist = '500, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_complex_power.py', mode 'w' at 0x0000000018888fa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_complex_power.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________________ TestMinMax.test_min_max ____________________________ self = <pypy.module.pypyjit.test_pypy_c.test_min_max.TestMinMax object at 0x000000001797b9f0> def test_min_max(self): def main(): i=0 sa=0 while i < 300: sa+=min(max(i, 3000), 4000) i+=1 return sa > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_min_max.py:13: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_min_max.TestMinMax object at 0x000000001797b9f0> func_or_src = <function main at 0x000000001793b088>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000001797bc20>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_min_max.py', mode 'w' at 0x000000001616caa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_min_max.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________________ TestMinMax.test_silly_max ___________________________ self = <pypy.module.pypyjit.test_pypy_c.test_min_max.TestMinMax object at 0x0000000013adcad8> def test_silly_max(self): def main(): i = 13 sa = 0 while i < 30000: lst = list(range(i % 1000 + 2)) sa += max(*lst) # ID: callmax i += 1 return sa > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_min_max.py:36: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_min_max.TestMinMax object at 0x0000000013adcad8> func_or_src = <function main at 0x00000000173c65c0>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000013adcc98>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_silly_max.py', mode 'w' at 0x000000001616d220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_silly_max.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________________ TestMinMax.test_iter_max ___________________________ self = <pypy.module.pypyjit.test_pypy_c.test_min_max.TestMinMax object at 0x000000001598d0f8> def test_iter_max(self): def main(): i = 2 sa = 0 while i < 300: lst = range(i) sa += max(lst) # ID: max i += 1 return sa > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_min_max.py:79: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_min_max.TestMinMax object at 0x000000001598d0f8> func_or_src = <function main at 0x0000000014cddf10>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000001598d2b8>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_iter_max.py', mode 'w' at 0x000000001616d620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_iter_max.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________________ TestMisc.test_f1 _______________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000015cd2c60> def test_f1(self): def f1(n): "Arbitrary test function." i = 0 x = 1 while i<n: j = 0 while j<=i: j = j + 1 x = x + (i&j) i = i + 1 return x > log = self.run(f1, [2117]) pypy/module/pypyjit/test_pypy_c/test_misc.py:18: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000015cd2c60> func_or_src = <function f1 at 0x0000000014d4fc40>, args = [2117] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000015cd2f70>, funcname = 'f1' arglist = '2117' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_f1.py', mode 'w' at 0x000000001616dc20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_f1.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________________ TestMisc.test_factorial ____________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000161f24b8> def test_factorial(self): def fact(n): r = 1 while n > 1: r *= n n -= 1 return r > log = self.run(fact, [7], threshold=4) pypy/module/pypyjit/test_pypy_c/test_misc.py:49: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000161f24b8> func_or_src = <function fact at 0x0000000013d25010>, args = [7] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 4} src = <py._code.source.Source object at 0x00000000161f24f0>, funcname = 'fact' arglist = '7' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_factorial.py', mode 'w' at 0x00000000156b00a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_factorial.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ________________________ TestMisc.test_mixed_type_loop _________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000136578a0> def test_mixed_type_loop(self): def main(n): i = 0.0 j = 2 while i < n: i = j + i return i # > log = self.run(main, [1000]) pypy/module/pypyjit/test_pypy_c/test_misc.py:83: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000136578a0> func_or_src = <function main at 0x0000000013d25358>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000136578d8>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_mixed_type_loop.py', mode 'w' at 0x00000000156b03a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_mixed_type_loop.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ________________ TestMisc.test_cached_pure_func_of_equal_fields ________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000000c54e790> def test_cached_pure_func_of_equal_fields(self): def main(n): class A(object): def __init__(self, val): self.val1 = self.val2 = val A("x") # prevent field unboxing a = A(1) b = A(1) sa = 0 while n: sa += 2*a.val1 sa += 2*b.val2 b.val2 = a.val1 n -= 1 return sa # > log = self.run(main, [1000]) pypy/module/pypyjit/test_pypy_c/test_misc.py:110: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000000c54e790> func_or_src = <function main at 0x0000000013d25da8>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000000c54ed40>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_cached_pure_func_of_equal_fields.py', mode 'w' at 0x00000000156b0a20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_cached_pure_func_of_equal_fields.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestMisc.test_range_iter_simple ________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000000efab788> def test_range_iter_simple(self): def main(n): def g(n): return range(n) s = 0 for i in range(n): # ID: for tmp = g(n) s += tmp[i] # ID: getitem a = 0 return s # > log = self.run(main, [1000]) pypy/module/pypyjit/test_pypy_c/test_misc.py:143: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000000efab788> func_or_src = <function main at 0x000000001308a548>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000000efab7c0>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_range_iter_simple.py', mode 'w' at 0x00000000156b0da0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_range_iter_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestMisc.test_range_iter_normal ________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000147595c8> def test_range_iter_normal(self): # Difference: range(n) => range(1, n). # This difference doesn't really change anything in pypy3.5, # but it used to in pypy2.7. def main(n): def g(n): return range(n) s = 0 for i in range(1, n): # ID: for tmp = g(n) s += tmp[i] # ID: getitem a = 0 return s # > log = self.run(main, [1000]) pypy/module/pypyjit/test_pypy_c/test_misc.py:188: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000147595c8> func_or_src = <function main at 0x000000001308a908>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000014759600>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_range_iter_normal.py', mode 'w' at 0x00000000156b11a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_range_iter_normal.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ________________________ TestMisc.test_chain_of_guards _________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000000f1ee640> def test_chain_of_guards(self): src = """ class A(object): def method_x(self): return 3 l = ["x", "y"] def main(arg): sum = 0 a = A() i = 0 while i < 500: name = l[arg] sum += getattr(a, 'method_' + name)() i += 1 return sum """ > log = self.run(src, [0]) pypy/module/pypyjit/test_pypy_c/test_misc.py:211: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000000f1ee640> func_or_src = '\n class A(object):\n def method_x(self):\n return 3\n\n l = ["x", "y"]\n\n ...rg]\n sum += getattr(a, \'method_\' + name)()\n i += 1\n return sum\n ' args = [0], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000000f1ee8a8>, funcname = 'main' arglist = '0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_chain_of_guards.py', mode 'w' at 0x00000000156b17a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_chain_of_guards.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _________________ TestMisc.test_unpack_iterable_non_list_tuple _________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000000fb9fd38> def test_unpack_iterable_non_list_tuple(self): def main(n): import array items = [array.array("i", [1])] * n total = 0 for a, in items: total += a return total > log = self.run(main, [1000000]) pypy/module/pypyjit/test_pypy_c/test_misc.py:226: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000000fb9fd38> func_or_src = <function main at 0x000000001308bd30>, args = [1000000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000000fb9fd70>, funcname = 'main' arglist = '1000000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unpack_iterable_non_list_tuple.py', mode 'w' at 0x00000000156b1aa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unpack_iterable_non_list_tuple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestMisc.test_dont_trace_every_iteration ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000010103cc8> def test_dont_trace_every_iteration(self): def reference(a, b): i = sa = 0 while i < 300: sa += a % b i += 1 return sa # def main(a, b): i = sa = 0 while i < 300: if a > 0: pass if 1 < b < 2: pass sa += a % b i += 1 return sa # > log_ref = self.run(reference, [10, 20]) pypy/module/pypyjit/test_pypy_c/test_misc.py:273: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000010103cc8> func_or_src = <function reference at 0x0000000013d9e548>, args = [10, 20] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000010103d00> funcname = 'reference', arglist = '10, 20' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_dont_trace_every_iteration.py', mode 'w' at 0x00000000156b1da0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_dont_trace_every_iteration.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestMisc.test_overflow_checking ________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000010b05ad0> def test_overflow_checking(self): """ This test only checks that we get the expected result, not that any optimization has been applied. """ def main(): import sys def f(a,b): if a < 0: return -1 return a-b # total = sys.maxsize - 2147483647 for i in range(100000): total += f(i, 5) # return total # > self.run_and_check(main, []) pypy/module/pypyjit/test_pypy_c/test_misc.py:312: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: in run_and_check log1 = self.run(src, args, threshold=-1) # without the JIT _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000010b05ad0> func_or_src = <function main at 0x0000000017e905c0>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010b05b08>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_overflow_checking.py', mode 'w' at 0x00000000160b82a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_overflow_checking.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________________ TestMisc.test_global _____________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000010df7600> def test_global(self): # check that the global read is removed even from the entry bridge log = self.run(""" i = 0 globalinc = 1 def main(n): global i while i < n: l = globalinc # ID: globalread i += l > """, [1000]) pypy/module/pypyjit/test_pypy_c/test_misc.py:324: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000010df7600> func_or_src = '\n i = 0\n globalinc = 1\n def main(n):\n global i\n while i < n:\n l = globalinc # ID: globalread\n i += l\n ' args = [1000], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000010df78d8>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_global.py', mode 'w' at 0x00000000160b8720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_global.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________________ TestMisc.test_eval ______________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000010f45520> def test_eval(self): def main(): i = 1 a = compile('x+x+x+x+x+x', 'eval', 'eval') b = {'x': 7} while i < 1000: y = eval(a, b, b) # ID: eval i += 1 return y > log = self.run(main) pypy/module/pypyjit/test_pypy_c/test_misc.py:342: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000010f45520> func_or_src = <function main at 0x0000000017e80098>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000010f45558>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_eval.py', mode 'w' at 0x00000000160b8a20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_eval.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________________ TestMisc.test_sys_exc_info __________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000001123fc58> def test_sys_exc_info(self): def main(): i = 1 lst = [i] while i < 1000: try: return lst[i] except: e = sys.exc_info()[1] # ID: exc_info if not isinstance(e, IndexError): raise i += 1 return 42 > log = self.run(main) pypy/module/pypyjit/test_pypy_c/test_misc.py:362: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000001123fc58> func_or_src = <function main at 0x0000000017e80638>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000001123fb08>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_sys_exc_info.py', mode 'w' at 0x00000000160b8f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_sys_exc_info.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ________________________ TestMisc.test_long_comparison _________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000011956988> def test_long_comparison(self): def main(n): while n: x = 12345678901234567890123456 x > 1231231231231231231231231 # ID: long_op n -= 1 > log = self.run(main, [300]) pypy/module/pypyjit/test_pypy_c/test_misc.py:375: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000011956988> func_or_src = <function main at 0x0000000017e81ad8>, args = [300] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000011956bf0>, funcname = 'main' arglist = '300' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_long_comparison.py', mode 'w' at 0x00000000160b90a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_long_comparison.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________________ TestMisc.test_settrace ____________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000000e26ab48> def test_settrace(self): def main(n): import sys sys.settrace(lambda *args, **kwargs: None) def f(): return 1 while n: n -= f() > log = self.run(main, [300]) pypy/module/pypyjit/test_pypy_c/test_misc.py:390: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000000e26ab48> func_or_src = <function main at 0x00000000126eae30>, args = [300] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000000e26ab80>, funcname = 'main' arglist = '300' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_settrace.py', mode 'w' at 0x00000000160b9420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_settrace.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________ TestMisc.test_forward_jump_absolute_doesnt_start_loops ____________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000120adcc8> def test_forward_jump_absolute_doesnt_start_loops(self): def main(): def f(x): for i in range(x): break # jump_absolute, forward for i in range(1000000): f(i) > log = self.run(main, []) pypy/module/pypyjit/test_pypy_c/test_misc.py:405: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000120adcc8> func_or_src = <function main at 0x00000000126eb538>, args = [] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000120adbb0>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_forward_jump_absolute_doesnt_start_loops.py', mode 'w' at 0x00000000160b9a20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_forward_jump_absolute_doesnt_start_loops.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestMisc.test_stat_result_virtual _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000001252d210> def test_stat_result_virtual(self): def main(n): import os res = 0 for i in range(n): res += os.path.islink(__file__) # ID: islink return res > log = self.run(main, [3000]) pypy/module/pypyjit/test_pypy_c/test_misc.py:416: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000001252d210> func_or_src = <function main at 0x00000000163a8020>, args = [3000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000001252d408>, funcname = 'main' arglist = '3000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_stat_result_virtual.py', mode 'w' at 0x00000000160b9c20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_stat_result_virtual.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________________ TestMisc.test_locals _____________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000130adef8> @pytest.mark.skipif("sys.maxint == 2 ** 31 - 1") def test_locals(self): def main(n): res = 0 for i in range(n): locals()["abc"] = 1 res += locals()["abc"] + locals()["i"] return res > log = self.run(main, [3000]) pypy/module/pypyjit/test_pypy_c/test_misc.py:432: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000130adef8> func_or_src = <function main at 0x00000000163a8908>, args = [3000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000130adf30>, funcname = 'main' arglist = '3000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_locals.py', mode 'w' at 0x00000000160b9f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_locals.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestMisc.test_locals_in_inlined_function ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000013624b80> def test_locals_in_inlined_function(self): def main(n): def g(): locals()["ABC"] = True return 1 res = 0 for i in range(n): res += g() return res > log = self.run(main, [3000]) pypy/module/pypyjit/test_pypy_c/test_misc.py:461: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000013624b80> func_or_src = <function main at 0x00000000163a9178>, args = [3000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000013624a68>, funcname = 'main' arglist = '3000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_locals_in_inlined_function.py', mode 'w' at 0x000000001783a520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_locals_in_inlined_function.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ________________________ TestMisc.test_sys_flags_access ________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000157b0d08> def test_sys_flags_access(self): def main(n): import sys x = 0 for i in range(n): import sys flags = sys.flags # ID: flags x += flags.debug > log = self.run(main, [3000]) pypy/module/pypyjit/test_pypy_c/test_misc.py:474: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000157b0d08> func_or_src = <function main at 0x0000000015d16e30>, args = [3000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000157b0f38>, funcname = 'main' arglist = '3000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_sys_flags_access.py', mode 'w' at 0x000000001783a6a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_sys_flags_access.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________________ TestMisc.test_tuple_slice ___________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000014175750> def test_tuple_slice(self): def main(n): t = (1, 2, 3, 4, 5, n) res = 0 for i in range(n): res += len(t[0:5:2]) # ID: getslice > log = self.run(main, [3000]) pypy/module/pypyjit/test_pypy_c/test_misc.py:485: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x0000000014175750> func_or_src = <function main at 0x0000000014934818>, args = [3000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000014175788>, funcname = 'main' arglist = '3000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_tuple_slice.py', mode 'w' at 0x000000001783aa20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_tuple_slice.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestMisc.test_tuple_slice_virtual _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000001537e7c8> def test_tuple_slice_virtual(self): def main(n): t = (1, 2, 3, 4, 5, n) res = 0 for i in range(n): t = (1, 2, 3, 4, 5, n) res += len(t[slice(0, 5)]) # ID: getslice > log = self.run(main, [3000]) pypy/module/pypyjit/test_pypy_c/test_misc.py:500: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x000000001537e7c8> func_or_src = <function main at 0x00000000149359e8>, args = [3000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000001537ea30>, funcname = 'main' arglist = '3000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_tuple_slice_virtual.py', mode 'w' at 0x000000001783ada0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_tuple_slice_virtual.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _________________________ TestMisc.test_id_no_rbigint __________________________ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000150c9b40> def test_id_no_rbigint(self): def main(n): l = [object() for i in range(n)] res = 0 for obj in l: res ^= id(obj) # ID: id > log = self.run(main, [3000]) pypy/module/pypyjit/test_pypy_c/test_misc.py:514: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_misc.TestMisc object at 0x00000000150c9b40> func_or_src = <function main at 0x0000000014019088>, args = [3000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000150c9d70>, funcname = 'main' arglist = '3000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_id_no_rbigint.py', mode 'w' at 0x000000001783b0a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_id_no_rbigint.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ________________________ TestShift.test_shift_intbound _________________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x0000000017e61670> def test_shift_intbound(self): def main(b): res = 0 a = 0 while a < 300: assert a >= 0 assert 0 <= b <= 10 val = a >> b if val >= 0: # ID: rshift res += 1 val = a << b if val >= 0: # ID: lshift res += 2 a += 1 return res # > log = self.run(main, [2]) pypy/module/pypyjit/test_pypy_c/test_shift.py:22: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x0000000017e61670> func_or_src = <function main at 0x0000000014019880>, args = [2] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000017e616a8>, funcname = 'main' arglist = '2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_intbound.py', mode 'w' at 0x000000001783b520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_intbound.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestShift.test_lshift_and_then_rshift _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000001558b4b0> def test_lshift_and_then_rshift(self): def main(b): res = 0 a = 0 while res < 300: assert 0 <= a <= 300 assert 0 <= b <= 10 res = (a << b) >> b # ID: shift a += 1 return res # > log = self.run(main, [2]) pypy/module/pypyjit/test_pypy_c/test_shift.py:39: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000001558b4b0> func_or_src = <function main at 0x0000000014a606b0>, args = [2] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000001558b590>, funcname = 'main' arglist = '2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_lshift_and_then_rshift.py', mode 'w' at 0x000000001783b820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_lshift_and_then_rshift.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_division_to_rshift _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000001460d168> def test_division_to_rshift(self): def main(b): res = 0 a = 0 while a < 300: res1 = a // b # ID: div res2 = a // 2 # ID: shift res3 = a // 11 # ID: mul res += res1 + res2 + res3 a += 1 return res # > log = self.run(main, [3]) pypy/module/pypyjit/test_pypy_c/test_shift.py:58: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000001460d168> func_or_src = <function main at 0x0000000014a619e8>, args = [3] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000001460d050>, funcname = 'main' arglist = '3' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_division_to_rshift.py', mode 'w' at 0x000000001783bba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_division_to_rshift.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_modulo_optimization ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x0000000015de2608> def test_modulo_optimization(self): def main(b): res = 0 a = 0 while a < 300: res1 = a%b # ID: mod res2 = a%2 # ID: and res3 = a%11 # ID: mul res += res1 + res2 + res3 a += 1 return res # > log = self.run(main, [3]) pypy/module/pypyjit/test_pypy_c/test_shift.py:94: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x0000000015de2608> func_or_src = <function main at 0x0000000016ff12e0>, args = [3] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000015de2790>, funcname = 'main' arglist = '3' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_modulo_optimization.py', mode 'w' at 0x000000001783bd20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_modulo_optimization.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestShift.test_division_to_rshift_allcases __________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x00000000149cc058> def test_division_to_rshift_allcases(self): """ This test only checks that we get the expected result, not that any optimization has been applied. """ avalues = ('a', 'b', 7, -42, 8) bvalues = ['b'] + range(-10, 0) + range(1,10) code = '' for a in avalues: for b in bvalues: code += ' sa += %s / %s\n' % (a, b) src = """ def main(a, b): i = sa = 0 while i < 300: %s i += 1 return sa """ % code > self.run_and_check(src, [ 10, 20]) pypy/module/pypyjit/test_pypy_c/test_shift.py:139: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: in run_and_check log1 = self.run(src, args, threshold=-1) # without the JIT _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x00000000149cc058> func_or_src = '\n def main(a, b):\n i = sa = 0\n while i < 300:\n sa += a / b\n ...7\n sa += 8 / 8\n sa += 8 / 9\n\n i += 1\n return sa\n ' args = [10, 20], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000149cc330>, funcname = 'main' arglist = '10, 20' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_division_to_rshift_allcases.py', mode 'w' at 0x0000000012144120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_division_to_rshift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________________ TestShift.test_mod ______________________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x0000000010505360> def test_mod(self): """ This test only checks that we get the expected result, not that any optimization has been applied. """ avalues = ('a', 'b', 7, -42, 8) bvalues = ['b'] + range(-10, 0) + range(1,10) code = '' for a in avalues: for b in bvalues: code += ' sa += %s %% %s\n' % (a, b) src = """ def main(a, b): i = sa = 0 while i < 2000: if a > 0: pass if 1 < b < 2: pass %s i += 1 return sa """ % code > self.run_and_check(src, [ 10, 20]) pypy/module/pypyjit/test_pypy_c/test_shift.py:164: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: in run_and_check log1 = self.run(src, args, threshold=-1) # without the JIT _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x0000000010505360> func_or_src = '\n def main(a, b):\n i = sa = 0\n while i < 2000:\n if a > 0: pass\n ...7\n sa += 8 % 8\n sa += 8 % 9\n\n i += 1\n return sa\n ' args = [10, 20], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010505248>, funcname = 'main' arglist = '10, 20' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_mod.py', mode 'w' at 0x0000000012144620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_mod.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestShift.test_shift_allcases[0] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-4, 0], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-4, 0] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001582fa28>, funcname = 'main' arglist = '-4, 0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012144820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestShift.test_shift_allcases[1] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-4, 1], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-4, 1] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014e72e20>, funcname = 'main' arglist = '-4, 1' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012144aa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestShift.test_shift_allcases[2] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-4, 2], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-4, 2] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000f112480>, funcname = 'main' arglist = '-4, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012144f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestShift.test_shift_allcases[3] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-4, 31], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-4, 31] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015f85718>, funcname = 'main' arglist = '-4, 31' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000121452a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestShift.test_shift_allcases[4] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-4, 32], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-4, 32] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000175197f8>, funcname = 'main' arglist = '-4, 32' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012145620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestShift.test_shift_allcases[5] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-4, 33], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-4, 33] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000149b5788>, funcname = 'main' arglist = '-4, 33' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000121459a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestShift.test_shift_allcases[6] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-4, 61], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-4, 61] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012610640>, funcname = 'main' arglist = '-4, 61' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012145ca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestShift.test_shift_allcases[7] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-4, 62], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-4, 62] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014778138>, funcname = 'main' arglist = '-4, 62' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000151fc320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestShift.test_shift_allcases[8] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-4, 63], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-4, 63] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012d503a0>, funcname = 'main' arglist = '-4, 63' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000151fc620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestShift.test_shift_allcases[9] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-3, 0], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-3, 0] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000f3fa090>, funcname = 'main' arglist = '-3, 0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000151fc920> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[10] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-3, 1], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-3, 1] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000127b5f30>, funcname = 'main' arglist = '-3, 1' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000151fcca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[11] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-3, 2], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-3, 2] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000138f3328>, funcname = 'main' arglist = '-3, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000151fd020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[12] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-3, 31], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-3, 31] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014ab8640>, funcname = 'main' arglist = '-3, 31' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000151fd320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[13] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-3, 32], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-3, 32] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013d85e18>, funcname = 'main' arglist = '-3, 32' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000151fd620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[14] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-3, 33], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-3, 33] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000159fbda8>, funcname = 'main' arglist = '-3, 33' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000151fd920> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[15] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-3, 61], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-3, 61] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001646ba28>, funcname = 'main' arglist = '-3, 61' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000151fdca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[16] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-3, 62], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-3, 62] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016a4a1a8>, funcname = 'main' arglist = '-3, 62' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012c420a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[17] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-3, 63], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-3, 63] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013979d70>, funcname = 'main' arglist = '-3, 63' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012c42420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[18] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-2, 0], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-2, 0] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000b917948>, funcname = 'main' arglist = '-2, 0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012c426a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[19] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-2, 1], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-2, 1] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016ff90c0>, funcname = 'main' arglist = '-2, 1' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012c42aa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[20] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-2, 2], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-2, 2] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012149ec0>, funcname = 'main' arglist = '-2, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012c42e20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[21] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-2, 31], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-2, 31] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012c8e020>, funcname = 'main' arglist = '-2, 31' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012c43220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[22] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-2, 32], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-2, 32] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001290e0c8>, funcname = 'main' arglist = '-2, 32' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012c43520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[23] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-2, 33], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-2, 33] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015a0f4b0>, funcname = 'main' arglist = '-2, 33' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012c438a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[24] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-2, 61], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-2, 61] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000159d3210>, funcname = 'main' arglist = '-2, 61' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012c43c20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[25] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-2, 62], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-2, 62] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011ec2c60>, funcname = 'main' arglist = '-2, 62' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012c43f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[26] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-2, 63], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-2, 63] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001142cb10>, funcname = 'main' arglist = '-2, 63' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000155402a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[27] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-1, 0], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-1, 0] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016eb6218>, funcname = 'main' arglist = '-1, 0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015540720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[28] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-1, 1], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-1, 1] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000181e7ef8>, funcname = 'main' arglist = '-1, 1' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015540a20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[29] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-1, 2], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-1, 2] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000163b27c8>, funcname = 'main' arglist = '-1, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015540d20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[30] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-1, 31], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-1, 31] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016d8f7c0>, funcname = 'main' arglist = '-1, 31' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015541020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[31] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-1, 32], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-1, 32] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014b56758>, funcname = 'main' arglist = '-1, 32' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015541320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[32] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-1, 33], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-1, 33] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000181c37f8>, funcname = 'main' arglist = '-1, 33' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015541820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[33] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-1, 61], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-1, 61] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016e3cfe0>, funcname = 'main' arglist = '-1, 61' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000155419a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[34] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-1, 62], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-1, 62] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017cbbd00>, funcname = 'main' arglist = '-1, 62' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015541d20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[35] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-1, 63], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [-1, 63] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018406c60>, funcname = 'main' arglist = '-1, 63' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000163fe0a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[36] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [0, 0], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [0, 0] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018745c58>, funcname = 'main' arglist = '0, 0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000163fe3a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[37] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [0, 1], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [0, 1] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018c0caa0>, funcname = 'main' arglist = '0, 1' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000163fe720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[38] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [0, 2], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [0, 2] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018ea10f8>, funcname = 'main' arglist = '0, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000163fed20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[39] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [0, 31], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [0, 31] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000192447c8>, funcname = 'main' arglist = '0, 31' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000163ff020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[40] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [0, 32], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [0, 32] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014baf788>, funcname = 'main' arglist = '0, 32' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000163ff320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[41] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [0, 33], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [0, 33] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014ba0800>, funcname = 'main' arglist = '0, 33' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000163ff620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[42] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [0, 61], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [0, 61] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000185e22c0>, funcname = 'main' arglist = '0, 61' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000163ffb20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[43] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [0, 62], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [0, 62] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000188e6f70>, funcname = 'main' arglist = '0, 62' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000163ffe20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[44] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [0, 63], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [0, 63] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000190b9590>, funcname = 'main' arglist = '0, 63' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015efa1a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[45] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [1, 0], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [1, 0] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000139a21a8>, funcname = 'main' arglist = '1, 0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015efa4a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[46] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [1, 1], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [1, 1] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001845ce20>, funcname = 'main' arglist = '1, 1' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015efa7a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[47] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [1, 2], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [1, 2] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000190551d8>, funcname = 'main' arglist = '1, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015efaba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[48] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [1, 31], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [1, 31] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018453558>, funcname = 'main' arglist = '1, 31' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015efaea0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[49] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [1, 32], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [1, 32] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018664b80>, funcname = 'main' arglist = '1, 32' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015efb220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[50] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [1, 33], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [1, 33] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000153741a8>, funcname = 'main' arglist = '1, 33' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015efb520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[51] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [1, 61], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [1, 61] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018fef7c0>, funcname = 'main' arglist = '1, 61' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015efb8a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[52] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [1, 62], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [1, 62] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013e411d8>, funcname = 'main' arglist = '1, 62' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015efbda0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[53] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [1, 63], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [1, 63] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000187b89c0>, funcname = 'main' arglist = '1, 63' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015efbf20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[54] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [2, 0], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [2, 0] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014fd7050>, funcname = 'main' arglist = '2, 0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015630420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[55] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [2, 1], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [2, 1] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018da4838>, funcname = 'main' arglist = '2, 1' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015630720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[56] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [2, 2], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [2, 2] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017d57da8>, funcname = 'main' arglist = '2, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015630ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[57] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [2, 31], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [2, 31] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018cbcf70>, funcname = 'main' arglist = '2, 31' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015630f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[58] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [2, 32], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [2, 32] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017c41ef8>, funcname = 'main' arglist = '2, 32' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015631220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[59] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [2, 33], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [2, 33] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016dd9830>, funcname = 'main' arglist = '2, 33' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015631520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[60] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [2, 61], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [2, 61] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018e42fe0>, funcname = 'main' arglist = '2, 61' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015631820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[61] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [2, 62], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [2, 62] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001856eec8>, funcname = 'main' arglist = '2, 62' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015631ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[62] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [2, 63], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [2, 63] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000169d0560>, funcname = 'main' arglist = '2, 63' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015631f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[63] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [3, 0], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [3, 0] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018653de0>, funcname = 'main' arglist = '3, 0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012d2e2a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[64] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [3, 1], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [3, 1] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015311440>, funcname = 'main' arglist = '3, 1' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012d2e5a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[65] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [3, 2], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [3, 2] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001848eb80>, funcname = 'main' arglist = '3, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012d2e8a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[66] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [3, 31], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [3, 31] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018b180c8>, funcname = 'main' arglist = '3, 31' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012d2ec20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[67] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [3, 32], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [3, 32] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016ba6608>, funcname = 'main' arglist = '3, 32' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012d2f020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[68] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [3, 33], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [3, 33] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018925a28>, funcname = 'main' arglist = '3, 33' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012d2f320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[69] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [3, 61], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [3, 61] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016bcd130>, funcname = 'main' arglist = '3, 61' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012d2f820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[70] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [3, 62], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [3, 62] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000190e8790>, funcname = 'main' arglist = '3, 62' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012d2fb20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[71] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [3, 63], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [3, 63] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000190de3a0>, funcname = 'main' arglist = '3, 63' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000012d2ff20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[72] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [4, 0], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [4, 0] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001870bc58>, funcname = 'main' arglist = '4, 0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x000000001655a4a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[73] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [4, 1], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [4, 1] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000191e4218>, funcname = 'main' arglist = '4, 1' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x000000001921e120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[74] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [4, 2], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [4, 2] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017a4fd70>, funcname = 'main' arglist = '4, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x000000001921e420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[75] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [4, 31], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [4, 31] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000144a1520>, funcname = 'main' arglist = '4, 31' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000013e381a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[76] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [4, 32], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [4, 32] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013e582c0>, funcname = 'main' arglist = '4, 32' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000013e38720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[77] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [4, 33], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [4, 33] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000c637980>, funcname = 'main' arglist = '4, 33' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000013e38ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[78] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [4, 61], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [4, 61] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013e23a60>, funcname = 'main' arglist = '4, 61' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000013e38d20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[79] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [4, 62], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [4, 62] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001797a640>, funcname = 'main' arglist = '4, 62' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000013e39020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[80] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [4, 63], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88>, args = [4, 63] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001592c058>, funcname = 'main' arglist = '4, 63' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000013e39320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[81] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775808, 0] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775808, 0], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013e736e0>, funcname = 'main' arglist = '-9223372036854775808, 0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000013e399a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[82] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775808, 1] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775808, 1], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015cada60>, funcname = 'main' arglist = '-9223372036854775808, 1' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000013e39ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[83] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775808, 2] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775808, 2], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014f36c60>, funcname = 'main' arglist = '-9223372036854775808, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000013e39ea0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[84] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775808, 31] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775808, 31], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001733e2f8>, funcname = 'main' arglist = '-9223372036854775808, 31' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015282820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[85] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775808, 32] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775808, 32], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017245830>, funcname = 'main' arglist = '-9223372036854775808, 32' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015282ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[86] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775808, 33] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775808, 33], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001757f590>, funcname = 'main' arglist = '-9223372036854775808, 33' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015282ea0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[87] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775808, 61] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775808, 61], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013eb1c20>, funcname = 'main' arglist = '-9223372036854775808, 61' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000152831a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[88] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775808, 62] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775808, 62], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000bf9a918>, funcname = 'main' arglist = '-9223372036854775808, 62' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000152834a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[89] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775808, 63] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775808, 63], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000bdd12b8>, funcname = 'main' arglist = '-9223372036854775808, 63' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000152837a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[90] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775807, 0] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775807, 0], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000f19cdb0>, funcname = 'main' arglist = '-9223372036854775807, 0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015283d20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[91] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775807, 1] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775807, 1], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000fcb7f30>, funcname = 'main' arglist = '-9223372036854775807, 1' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000015283ea0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[92] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775807, 2] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775807, 2], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010151168>, funcname = 'main' arglist = '-9223372036854775807, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000140ea220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[93] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775807, 31] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775807, 31], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010631910>, funcname = 'main' arglist = '-9223372036854775807, 31' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000140ea5a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[94] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775807, 32] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775807, 32], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010a425d0>, funcname = 'main' arglist = '-9223372036854775807, 32' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000140ea920> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[95] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775807, 33] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775807, 33], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010d99e50>, funcname = 'main' arglist = '-9223372036854775807, 33' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000140eac20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[96] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775807, 61] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775807, 61], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010dfc790>, funcname = 'main' arglist = '-9223372036854775807, 61' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000140eafa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[97] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775807, 62] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775807, 62], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010e29b08>, funcname = 'main' arglist = '-9223372036854775807, 62' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000140eb3a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[98] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [-9223372036854775807, 63] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [-9223372036854775807, 63], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010e8a6e8>, funcname = 'main' arglist = '-9223372036854775807, 63' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000140eb8a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[99] _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775806, 0] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775806, 0], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010f31f30>, funcname = 'main' arglist = '9223372036854775806, 0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x00000000140ebc20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[100] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775806, 1] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775806, 1], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001102ccd0>, funcname = 'main' arglist = '9223372036854775806, 1' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000010da2020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[101] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775806, 2] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775806, 2], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000119f93d0>, funcname = 'main' arglist = '9223372036854775806, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000010da2420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[102] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775806, 31] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775806, 31], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001050a2c0>, funcname = 'main' arglist = '9223372036854775806, 31' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000010da27a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[103] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775806, 32] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775806, 32], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000add7be8>, funcname = 'main' arglist = '9223372036854775806, 32' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000010da2b20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[104] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775806, 33] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775806, 33], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011ed8b10>, funcname = 'main' arglist = '9223372036854775806, 33' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000010da2f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[105] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775806, 61] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775806, 61], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000120397f8>, funcname = 'main' arglist = '9223372036854775806, 61' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000010da3320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[106] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775806, 62] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775806, 62], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012cfe560>, funcname = 'main' arglist = '9223372036854775806, 62' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000010da37a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[107] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775806, 63] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775806, 63], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000129c91a0>, funcname = 'main' arglist = '9223372036854775806, 63' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000010da3aa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[108] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775807, 0] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775807, 0], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012f27590>, funcname = 'main' arglist = '9223372036854775807, 0' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000010da3d20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[109] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775807, 1] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775807, 1], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013594c60>, funcname = 'main' arglist = '9223372036854775807, 1' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000016cde1a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[110] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775807, 2] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775807, 2], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013d59248>, funcname = 'main' arglist = '9223372036854775807, 2' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000016cde4a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[111] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775807, 31] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775807, 31], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015f29da8>, funcname = 'main' arglist = '9223372036854775807, 31' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000016cde8a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[112] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775807, 32] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775807, 32], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000163bb2b8>, funcname = 'main' arglist = '9223372036854775807, 32' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000016cdeda0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[113] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775807, 33] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775807, 33], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013dccd78>, funcname = 'main' arglist = '9223372036854775807, 33' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000016cdf120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[114] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775807, 61] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775807, 61], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000142f3f30>, funcname = 'main' arglist = '9223372036854775807, 61' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000016cdf4a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[115] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775807, 62] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775807, 62], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012a30e90>, funcname = 'main' arglist = '9223372036854775807, 62' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000016cdf8a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestShift.test_shift_allcases[116] ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> src = <function main at 0x000000000bf57f88>, args = [9223372036854775807, 63] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c5e6e90> func_or_src = <function main at 0x000000000bf57f88> args = [9223372036854775807, 63], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001615c528>, funcname = 'main' arglist = '9223372036854775807, 63' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py', mode 'w' at 0x0000000016cdfda0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[0] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, -10, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, -10, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001631d0f8>, funcname = 'main' arglist = '1, -10, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012458120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[1] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, -10, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, -10, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001345a678>, funcname = 'main' arglist = '1, -10, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x00000000124585a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[2] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, -10, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, -10, -3074457345618258603, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000126a4c28>, funcname = 'main' arglist = '1, -10, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x00000000124589a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[3] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, -10, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, -10, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001687be88>, funcname = 'main' arglist = '1, -10, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012459020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[4] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, 10, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, 10, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000152acaa0>, funcname = 'main' arglist = '1, 10, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012459320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[5] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, 10, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, 10, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000149cd718>, funcname = 'main' arglist = '1, 10, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012459720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[6] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, 10, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, 10, -3074457345618258603, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001689e528>, funcname = 'main' arglist = '1, 10, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012459b20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[7] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, 10, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, 10, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014d78090>, funcname = 'main' arglist = '1, 10, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012459f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[8] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, -201, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, -201, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000010da60c8>, funcname = 'main' arglist = '1, -201, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000011ff0420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[9] ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, -201, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, -201, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001249da28>, funcname = 'main' arglist = '1, -201, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000011ff0820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[10] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, -201, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, -201, -3074457345618258603, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000134d6bb8>, funcname = 'main' arglist = '1, -201, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000011ff0f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[11] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, -201, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, -201, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000122a3cc8>, funcname = 'main' arglist = '1, -201, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000011ff1320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[12] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, 201, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, 201, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013f8ff30>, funcname = 'main' arglist = '1, 201, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000011ff1da0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[13] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, 201, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, 201, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013386138>, funcname = 'main' arglist = '1, 201, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000015f644a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[14] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, 201, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, 201, -3074457345618258603, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000133750c0>, funcname = 'main' arglist = '1, 201, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000015f648a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[15] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, 201, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, 201, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013db4f38>, funcname = 'main' arglist = '1, 201, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000015f651a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[16] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, -3074457345618258603, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, -3074457345618258603, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000149eb130>, funcname = 'main' arglist = '1, -3074457345618258603, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000015f65ca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[17] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, -3074457345618258603, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, -3074457345618258603, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011f1ee90>, funcname = 'main' arglist = '1, -3074457345618258603, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x00000000130561a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[18] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, -3074457345618258603, -3074457345618258603, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, -3074457345618258603, -3074457345618258603, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000123a02c0>, funcname = 'main' arglist = '1, -3074457345618258603, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013056620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[19] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, -3074457345618258603, 3074457345618258602, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, -3074457345618258603, 3074457345618258602, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000139481e0>, funcname = 'main' arglist = '1, -3074457345618258603, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013056aa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[20] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, 3074457345618258602, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, 3074457345618258602, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013c65b40>, funcname = 'main' arglist = '1, 3074457345618258602, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x00000000130573a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[21] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, 3074457345618258602, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, 3074457345618258602, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001668b088>, funcname = 'main' arglist = '1, 3074457345618258602, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x00000000130577a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[22] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, 3074457345618258602, -3074457345618258603, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, 3074457345618258602, -3074457345618258603, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015cf0fe0>, funcname = 'main' arglist = '1, 3074457345618258602, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000015a62220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[23] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [1, 3074457345618258602, 3074457345618258602, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [1, 3074457345618258602, 3074457345618258602, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016430e90>, funcname = 'main' arglist = '1, 3074457345618258602, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000015a62920> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[24] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, -10, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, -10, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015a5a368>, funcname = 'main' arglist = '4, -10, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000015a62fa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[25] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, -10, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, -10, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016830d78>, funcname = 'main' arglist = '4, -10, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000015a636a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[26] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, -10, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, -10, -3074457345618258603, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011386d08>, funcname = 'main' arglist = '4, -10, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000015a63ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[27] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, -10, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, -10, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000137b8020>, funcname = 'main' arglist = '4, -10, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x00000000135441a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[28] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, 10, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, 10, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000122053d0>, funcname = 'main' arglist = '4, 10, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x00000000135446a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[29] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, 10, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, 10, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012c8e678>, funcname = 'main' arglist = '4, 10, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013544f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[30] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, 10, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, 10, -3074457345618258603, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000136dc448>, funcname = 'main' arglist = '4, 10, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013545620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[31] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, 10, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, 10, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013546a30>, funcname = 'main' arglist = '4, 10, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013545b20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[32] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, -201, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, -201, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000158a26e8>, funcname = 'main' arglist = '4, -201, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013fd4120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[33] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, -201, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, -201, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000012ea62f8>, funcname = 'main' arglist = '4, -201, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013fd4620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[34] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, -201, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, -201, -3074457345618258603, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000159f1830>, funcname = 'main' arglist = '4, -201, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013fd4c20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[35] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, -201, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, -201, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000011ec2de8>, funcname = 'main' arglist = '4, -201, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013fd50a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[36] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, 201, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, 201, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001142d088>, funcname = 'main' arglist = '4, 201, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013fd5520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[37] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, 201, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, 201, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001812b478>, funcname = 'main' arglist = '4, 201, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013fd59a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[38] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, 201, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, 201, -3074457345618258603, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018238410>, funcname = 'main' arglist = '4, 201, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013fd5ea0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[39] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, 201, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, 201, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014c0c6b0>, funcname = 'main' arglist = '4, 201, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013cc44a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[40] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, -3074457345618258603, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, -3074457345618258603, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013f35398>, funcname = 'main' arglist = '4, -3074457345618258603, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013cc50a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[41] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, -3074457345618258603, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, -3074457345618258603, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017ca4950>, funcname = 'main' arglist = '4, -3074457345618258603, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013cc5620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[42] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, -3074457345618258603, -3074457345618258603, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, -3074457345618258603, -3074457345618258603, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018381f68>, funcname = 'main' arglist = '4, -3074457345618258603, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013cc5ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[43] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, -3074457345618258603, 3074457345618258602, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, -3074457345618258603, 3074457345618258602, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000186bc678>, funcname = 'main' arglist = '4, -3074457345618258603, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013cd8420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[44] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, 3074457345618258602, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, 3074457345618258602, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018bd24b8>, funcname = 'main' arglist = '4, 3074457345618258602, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013cd87a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[45] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, 3074457345618258602, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, 3074457345618258602, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018e91050>, funcname = 'main' arglist = '4, 3074457345618258602, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013cd8d20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[46] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, 3074457345618258602, -3074457345618258603, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, 3074457345618258602, -3074457345618258603, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000191c8b10>, funcname = 'main' arglist = '4, 3074457345618258602, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013cd91a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[47] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [4, 3074457345618258602, 3074457345618258602, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [4, 3074457345618258602, 3074457345618258602, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000195b5b40>, funcname = 'main' arglist = '4, 3074457345618258602, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013cd9620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[48] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, -10, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, -10, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018dc59b8>, funcname = 'main' arglist = '8, -10, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013cd9da0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[49] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, -10, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, -10, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017b9aa30>, funcname = 'main' arglist = '8, -10, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013d2e120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[50] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, -10, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, -10, -3074457345618258603, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016a03638>, funcname = 'main' arglist = '8, -10, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013d2e7a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[51] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, -10, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, -10, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000190b8020>, funcname = 'main' arglist = '8, -10, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013d2eca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[52] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, 10, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, 10, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000141aec60>, funcname = 'main' arglist = '8, 10, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013d2f2a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[53] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, 10, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, 10, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000192ea758>, funcname = 'main' arglist = '8, 10, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013d2f8a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[54] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, 10, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, 10, -3074457345618258603, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000190550c0>, funcname = 'main' arglist = '8, 10, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000013d2fea0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[55] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, 10, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, 10, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015375210>, funcname = 'main' arglist = '8, 10, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x00000000164283a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[56] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, -201, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, -201, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001928db78>, funcname = 'main' arglist = '8, -201, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000016428b20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[57] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, -201, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, -201, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018652fa8>, funcname = 'main' arglist = '8, -201, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000016429020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[58] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, -201, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, -201, -3074457345618258603, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001477cb48>, funcname = 'main' arglist = '8, -201, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000016429b20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[59] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, -201, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, -201, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000186b4288>, funcname = 'main' arglist = '8, -201, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x00000000196460a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[60] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, 201, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, 201, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019045980>, funcname = 'main' arglist = '8, 201, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000019646520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[61] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, 201, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, 201, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013743018>, funcname = 'main' arglist = '8, 201, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000019646a20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[62] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, 201, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, 201, -3074457345618258603, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000013e35830>, funcname = 'main' arglist = '8, 201, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x00000000196471a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[63] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, 201, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, 201, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000185f2ad8>, funcname = 'main' arglist = '8, 201, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000019647520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[64] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, -3074457345618258603, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, -3074457345618258603, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000014b5a250>, funcname = 'main' arglist = '8, -3074457345618258603, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x00000000196479a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[65] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, -3074457345618258603, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, -3074457345618258603, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017c42598>, funcname = 'main' arglist = '8, -3074457345618258603, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000019647e20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[66] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, -3074457345618258603, -3074457345618258603, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, -3074457345618258603, -3074457345618258603, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019668a30>, funcname = 'main' arglist = '8, -3074457345618258603, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001528e2a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[67] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, -3074457345618258603, 3074457345618258602, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, -3074457345618258603, 3074457345618258602, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001857bf68>, funcname = 'main' arglist = '8, -3074457345618258603, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001528e920> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[68] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, 3074457345618258602, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, 3074457345618258602, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018855b40>, funcname = 'main' arglist = '8, 3074457345618258602, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001528ee20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[69] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, 3074457345618258602, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, 3074457345618258602, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001746f2b8>, funcname = 'main' arglist = '8, 3074457345618258602, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001528f2a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[70] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, 3074457345618258602, -3074457345618258603, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, 3074457345618258602, -3074457345618258603, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017dc7c58>, funcname = 'main' arglist = '8, 3074457345618258602, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001528f8a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[71] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [8, 3074457345618258602, 3074457345618258602, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [8, 3074457345618258602, 3074457345618258602, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000183d73d0>, funcname = 'main' arglist = '8, 3074457345618258602, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001557c4a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[72] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, -10, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, -10, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016a27590>, funcname = 'main' arglist = '100, -10, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001557c820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[73] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, -10, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, -10, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018476330>, funcname = 'main' arglist = '100, -10, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001557cca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[74] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, -10, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, -10, -3074457345618258603, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000179115c8>, funcname = 'main' arglist = '100, -10, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001557d0a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[75] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, -10, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, -10, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000018eb6e20>, funcname = 'main' arglist = '100, -10, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001557d720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[76] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, 10, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, 10, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000181f2528>, funcname = 'main' arglist = '100, 10, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001557db20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[77] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, 10, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, 10, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019301be8>, funcname = 'main' arglist = '100, 10, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012828020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[78] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, 10, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, 10, -3074457345618258603, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016bd8fe0>, funcname = 'main' arglist = '100, 10, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012828620> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[79] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, 10, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, 10, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001938dbe8>, funcname = 'main' arglist = '100, 10, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012828f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[80] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, -201, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, -201, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000017b73360>, funcname = 'main' arglist = '100, -201, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012829320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[81] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, -201, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, -201, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016ba2ad8>, funcname = 'main' arglist = '100, -201, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012829720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[82] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, -201, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, -201, -3074457345618258603, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000196f8138>, funcname = 'main' arglist = '100, -201, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012829ba0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[83] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, -201, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, -201, 3074457345618258602, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x00000000197d5b08>, funcname = 'main' arglist = '100, -201, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001778e2a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[84] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, 201, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, 201, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019897be8>, funcname = 'main' arglist = '100, 201, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x00000000198a2120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[85] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, 201, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, 201, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001993f520>, funcname = 'main' arglist = '100, 201, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x00000000198a28a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[86] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, 201, -3074457345618258603, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, 201, -3074457345618258603, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019883be8>, funcname = 'main' arglist = '100, 201, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001921e1a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[87] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, 201, 3074457345618258602, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, 201, 3074457345618258602, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000000bf2def8>, funcname = 'main' arglist = '100, 201, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001921e720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[88] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, -3074457345618258603, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, -3074457345618258603, -10, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000019692f00>, funcname = 'main' arglist = '100, -3074457345618258603, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001921eb20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[89] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, -3074457345618258603, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, -3074457345618258603, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015944560>, funcname = 'main' arglist = '100, -3074457345618258603, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001921efa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[90] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, -3074457345618258603, -3074457345618258603, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, -3074457345618258603, -3074457345618258603, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016121248>, funcname = 'main' arglist = '100, -3074457345618258603, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001921f3a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[91] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, -3074457345618258603, 3074457345618258602, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, -3074457345618258603, 3074457345618258602, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000015e3df30>, funcname = 'main' arglist = '100, -3074457345618258603, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001921f9a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[92] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, 3074457345618258602, -10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, 3074457345618258602, -10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001622e950>, funcname = 'main' arglist = '100, 3074457345618258602, -10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x000000001921fca0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[93] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, 3074457345618258602, 10, 9223372036854775807], jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, 3074457345618258602, 10, 9223372036854775807], import_site = False discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001364b398>, funcname = 'main' arglist = '100, 3074457345618258602, 10, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012d2e120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[94] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, 3074457345618258602, -3074457345618258603, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, 3074457345618258602, -3074457345618258603, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x000000001535d088>, funcname = 'main' arglist = '100, 3074457345618258602, -3074457345618258603, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012d2e520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestShift.test_revert_shift_allcases[95] ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> src = <function main at 0x000000000c614110> args = [100, 3074457345618258602, 3074457345618258602, 9223372036854775807] jitopts = {} def run_and_check(self, src, args=[], **jitopts): > log1 = self.run(src, args, threshold=-1) # without the JIT pypy/module/pypyjit/test_pypy_c/test_00_model.py:121: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_shift.TestShift object at 0x000000000c612368> func_or_src = <function main at 0x000000000c614110> args = [100, 3074457345618258602, 3074457345618258602, 9223372036854775807] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': -1} src = <py._code.source.Source object at 0x0000000016104640>, funcname = 'main' arglist = '100, 3074457345618258602, 3074457345618258602, 9223372036854775807' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py', mode 'w' at 0x0000000012d2e920> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_revert_shift_allcases.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestString.test_python3_missing_bchr _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000000df22e58> def test_python3_missing_bchr(self): # Check that 'bytes([i])' is special-cased into something # efficient, as Python 3.5 doesn't have a bchr() function or # anything more direct. def main(n): i = 0 result = b'' while i < n: c = bytes([i]) result += c i += 1 return i > log = self.run(main, [255]) pypy/module/pypyjit/test_pypy_c/test_string.py:23: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000000df22e58> func_or_src = <function main at 0x0000000016e85358>, args = [255] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000ffffb1fc2608>, funcname = 'main' arglist = '255' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_python3_missing_bchr.py', mode 'w' at 0x0000000012d2f020> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_python3_missing_bchr.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________ TestString.test_lookup_default_encoding ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000000c5e6608> def test_lookup_default_encoding(self): def main(n): i = 0 letters = b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' uletters = u'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' while i < n: c = bytes([letters[i % len(uletters)]]) i += (c.decode() == uletters[i % len(uletters)]) return i > log = self.run(main, [300], import_site=True) pypy/module/pypyjit/test_pypy_c/test_string.py:56: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000000c5e6608> func_or_src = <function main at 0x0000000016e5c368>, args = [300] import_site = True, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000000c5e6b80>, funcname = 'main' arglist = '300' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_lookup_default_encoding.py', mode 'w' at 0x0000000012d2f320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_lookup_default_encoding.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _________________________ TestString.test_int_base_16 __________________________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000000ed4e950> def test_int_base_16(self): def main(n): i = 1 while i < n: digits = '0123456789' i += int(digits[i % len(digits)], 16) return i > log = self.run(main, [1100], import_site=True) pypy/module/pypyjit/test_pypy_c/test_string.py:95: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000000ed4e950> func_or_src = <function main at 0x0000000016e5cc50>, args = [1100] import_site = True, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000000ed4ec60>, funcname = 'main' arglist = '1100' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_int_base_16.py', mode 'w' at 0x0000000012d2f820> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_int_base_16.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________________________ TestString.test_str_mod ____________________________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000000f3cd830> def test_str_mod(self): def main(n): s = 0 while n > 0: s += len('%d %d' % (n, n)) n -= 1 return s > log = self.run(main, [1000]) pypy/module/pypyjit/test_pypy_c/test_string.py:137: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000000f3cd830> func_or_src = <function main at 0x0000000016e5d358>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000000f3cda28>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_str_mod.py', mode 'w' at 0x0000000012d2fb20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_str_mod.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________ TestString.test_remove_duplicate_method_calls_bytes ______________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000000ff07b40> def test_remove_duplicate_method_calls_bytes(self): def main(n): lst = [] for i in range(n): s = b'Hello %d' % i t = s.lower() # ID: callone u = s.lower() # ID: calltwo lst.append(t) lst.append(u) return len(b','.join(lst)) > log = self.run(main, [1000]) pypy/module/pypyjit/test_pypy_c/test_string.py:192: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000000ff07b40> func_or_src = <function main at 0x0000000016e5db50>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000000ff07b78>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_remove_duplicate_method_calls_bytes.py', mode 'w' at 0x0000000012d2ff20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_remove_duplicate_method_calls_bytes.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________ TestString.test_remove_duplicate_method_calls_unicode _____________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000010b1d600> def test_remove_duplicate_method_calls_unicode(self): def main(n): lst = [] for i in range(n): s = u'H\xe4llo %d' % i t = s.lower() # ID: callone u = s.lower() # ID: calltwo lst.append(t) lst.append(u) return len(u','.join(lst)) > log = self.run(main, [1000]) pypy/module/pypyjit/test_pypy_c/test_string.py:212: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000010b1d600> func_or_src = <function main at 0x00000000165e35b0>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000010b1d638>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_remove_duplicate_method_calls_unicode.py', mode 'w' at 0x0000000015630420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_remove_duplicate_method_calls_unicode.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _________________________ TestString.test_lookup_codec _________________________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000010e95de0> def test_lookup_codec(self): log = self.run(""" import codecs def main(n): for i in range(n): codecs.lookup('utf8') return i > """, [1000]) pypy/module/pypyjit/test_pypy_c/test_string.py:254: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000010e95de0> func_or_src = "\n import codecs\n\n def main(n):\n for i in range(n):\n codecs.lookup('utf8')\n return i\n " args = [1000], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000010e96480>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_lookup_codec.py', mode 'w' at 0x0000000015630ea0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_lookup_codec.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _________________________ TestString.test_decode_ascii _________________________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000010feb5c8> def test_decode_ascii(self): log = self.run(""" def main(n): for i in range(n): (b"x" * (i & 15)).decode('ascii') return i > """, [1000]) pypy/module/pypyjit/test_pypy_c/test_string.py:272: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000010feb5c8> func_or_src = '\n def main(n):\n for i in range(n):\n (b"x" * (i & 15)).decode(\'ascii\')\n return i\n ' args = [1000], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000010feb788>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_decode_ascii.py', mode 'w' at 0x0000000015631220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_decode_ascii.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________ TestString.test_unicode_indexing_makes_no_bridges _______________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000001123e058> def test_unicode_indexing_makes_no_bridges(self): log = self.run(r""" u = 'abä👨‍👩‍👧‍👦 ' * 1000 def main(): for j in range(10): for i in range(len(u)): u[i] # ID: index0 > """, []) pypy/module/pypyjit/test_pypy_c/test_string.py:303: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000001123e058> func_or_src = "\n u = 'ab\xc3\xa4\xf0\x9f\x91\xa8\xe2\x80\x8d\xf0\x9f\x91\xa9\xe2\x80\x8d\xf0\x9f\x91\xa7\xe2\x80\x8d\xf0\x9f... for j in range(10):\n for i in range(len(u)):\n u[i] # ID: index0\n " args = [], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000001123e250>, funcname = 'main' arglist = '' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unicode_indexing_makes_no_bridges.py', mode 'w' at 0x00000000156315a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unicode_indexing_makes_no_bridges.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ___________ TestString.test_unicode_indexing_small_constant_indices ____________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x00000000119e3de0> def test_unicode_indexing_small_constant_indices(self): log = self.run(""" l = [u"abä", u"cdä", u"äü", u"éé", u"–—¿"] * 1000 def main(n): global s for u in l: s = u[0] + u[1] + u[-1] # ID: index len(u) return len(s) > """, [1000]) pypy/module/pypyjit/test_pypy_c/test_string.py:318: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x00000000119e3de0> func_or_src = '\n l = [u"ab\xc3\xa4", u"cd\xc3\xa4", u"\xc3\xa4\xc3\xbc", u"\xc3\xa9\xc3\xa9", u"\xe2\x80\x93\xe2\x80\x94\xc2...n l:\n s = u[0] + u[1] + u[-1] # ID: index\n len(u)\n return len(s)\n ' args = [1000], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000119e3e50>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unicode_indexing_small_constant_indices.py', mode 'w' at 0x00000000156318a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unicode_indexing_small_constant_indices.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________ TestString.test_unicode_slicing_small_constant_indices ____________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000000add6d78> def test_unicode_slicing_small_constant_indices(self): log = self.run(""" def main(n): u = 'abä👨‍👩‍👧‍👦 ' * 1000 global s count = 0 while u: u = u[1:] # ID: index count += 1 return count > """, [1000]) pypy/module/pypyjit/test_pypy_c/test_string.py:353: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x000000000add6d78> func_or_src = "\n def main(n):\n u = 'ab\xc3\xa4\xf0\x9f\x91\xa8\xe2\x80\x8d\xf0\x9f\x91\xa9\xe2\x80\x8d\xf0\x9f\x... while u:\n u = u[1:] # ID: index\n count += 1\n return count\n " args = [1000], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000000add6db0>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unicode_slicing_small_constant_indices.py', mode 'w' at 0x0000000015631c20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unicode_slicing_small_constant_indices.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ________________________ TestString.test_decode_encode _________________________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000011d8b638> def test_decode_encode(self): log = self.run(r""" def main(n): global s u = b'ab\xc3\xa4\xf0\x9f\x91\xa9\xe2\x80\x8d\xf0\x9f\x91\xa9\xe2\x80\x8d\xf0\x9f\x91\xa7\xe2\x80\x8d\xf0\x9f\x91\xa6'.decode("utf-8") count = 0 for i in range(n): b = (u + str(i)).encode("utf-8") u = b.decode("utf-8") # ID: decode count += 1 return count > """, [10000]) pypy/module/pypyjit/test_pypy_c/test_string.py:378: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000011d8b638> func_or_src = '\n def main(n):\n global s\n u = b\'ab\\xc3\\xa4\\xf0\\x9f\\x91\\xa9\\xe2\\x80\\x8d\\xf0...")\n u = b.decode("utf-8") # ID: decode\n count += 1\n return count\n ' args = [10000], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000011d8b670>, funcname = 'main' arglist = '10000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_decode_encode.py', mode 'w' at 0x0000000015631f20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_decode_encode.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________________ TestString.test_find _____________________________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x00000000124e5e18> def test_find(self): log = self.run(""" def main(n): global s b = b'abaaac' * 10000 count = 0 start = 0 while 1: start = b.find(b'a', start) if start < 0: break b[start] # ID: index count += 1 start += 1 return count > """, [10000]) pypy/module/pypyjit/test_pypy_c/test_string.py:402: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x00000000124e5e18> func_or_src = "\n def main(n):\n global s\n b = b'abaaac' * 10000\n count = 0\n s... b[start] # ID: index\n count += 1\n start += 1\n return count\n " args = [10000], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000124e5fa0>, funcname = 'main' arglist = '10000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_find.py', mode 'w' at 0x0000000015efa320> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_find.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError __________________ TestString.test_strip_doesnt_escape_bytes ___________________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x00000000128b6cd0> def test_strip_doesnt_escape_bytes(self): log = self.run(""" def main(n): l = [bytes(x) for x in range(10000)] res = 0 for data in l: res += len(data.strip(b'1')) # ID: striparg for data in l: res += len(data.strip()) # ID: stripnone return res > """, [10000]) pypy/module/pypyjit/test_pypy_c/test_string.py:421: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x00000000128b6cd0> func_or_src = '\n def main(n):\n l = [bytes(x) for x in range(10000)]\n res = 0\n for data i... for data in l:\n res += len(data.strip()) # ID: stripnone\n return res\n ' args = [10000], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000128b6f70>, funcname = 'main' arglist = '10000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_strip_doesnt_escape_bytes.py', mode 'w' at 0x0000000015efa6a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_strip_doesnt_escape_bytes.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________ TestString.test_unicode_strip_doesnt_escape_uniobject _____________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000012f590f8> def test_unicode_strip_doesnt_escape_uniobject(self): log = self.run(""" def main(n): uni = bytes(bytearray([0xc3, 0xa4])).decode("utf-8") l = [str(x) + uni + str(x) for x in range(10000)] res = 0 for data in l: res += len(data.strip(u'1')) # ID: stripnone for data in l: res += len(data.strip()) # ID: striparg return res > """, [10000]) pypy/module/pypyjit/test_pypy_c/test_string.py:443: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000012f590f8> func_or_src = '\n def main(n):\n uni = bytes(bytearray([0xc3, 0xa4])).decode("utf-8")\n l = [str(x) + u...n for data in l:\n res += len(data.strip()) # ID: striparg\n return res\n ' args = [10000], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000012f592f0>, funcname = 'main' arglist = '10000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unicode_strip_doesnt_escape_uniobject.py', mode 'w' at 0x0000000015efa9a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unicode_strip_doesnt_escape_uniobject.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _________ TestString.test_unicode_strip_doesnt_escape_uniobject_ascii __________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000012e5d0f8> def test_unicode_strip_doesnt_escape_uniobject_ascii(self): log = self.run(""" def main(n): l = [str(x) for x in range(10000)] res = 0 for data in l: res += len(data.strip(u'1')) # ID: stripnone for data in l: res += len(data.strip()) # ID: striparg return res > """, [10000]) pypy/module/pypyjit/test_pypy_c/test_string.py:464: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000012e5d0f8> func_or_src = '\n def main(n):\n l = [str(x) for x in range(10000)]\n res = 0\n for data in ...n for data in l:\n res += len(data.strip()) # ID: striparg\n return res\n ' args = [10000], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000012e5d130>, funcname = 'main' arglist = '10000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unicode_strip_doesnt_escape_uniobject_ascii.py', mode 'w' at 0x0000000015efad20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unicode_strip_doesnt_escape_uniobject_ascii.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _________ TestString.test_unicode_splitlines_doesnt_allocate_uniobject _________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000015738528> def test_unicode_splitlines_doesnt_allocate_uniobject(self): log = self.run(""" def main(n): res = 0 for i in range(n): data = str(i) + "\\n" res += len(data.splitlines()) # ID: splitlines return res > """, [10000]) pypy/module/pypyjit/test_pypy_c/test_string.py:485: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x0000000015738528> func_or_src = '\n def main(n):\n res = 0\n for i in range(n):\n data = str(i) + "\\n"\n res += len(data.splitlines()) # ID: splitlines\n return res\n ' args = [10000], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000015738560>, funcname = 'main' arglist = '10000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unicode_splitlines_doesnt_allocate_uniobject.py', mode 'w' at 0x0000000015efb120> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unicode_splitlines_doesnt_allocate_uniobject.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ________________ TestString.test_textiowrapper_write_is_inlined ________________ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x00000000160a4058> def test_textiowrapper_write_is_inlined(self): log = self.run(""" def main(n): import io tw = io.TextIOWrapper(io.BytesIO()) for i in range(n): tw.write('a') > """, [10000]) pypy/module/pypyjit/test_pypy_c/test_string.py:497: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_string.TestString object at 0x00000000160a4058> func_or_src = "\n def main(n):\n import io\n tw = io.TextIOWrapper(io.BytesIO())\n for i in range(n):\n tw.write('a')\n " args = [10000], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000160a4090>, funcname = 'main' arglist = '10000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_textiowrapper_write_is_inlined.py', mode 'w' at 0x0000000015efb520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_textiowrapper_write_is_inlined.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestStruct.test_struct_function ________________________ self = <pypy.module.pypyjit.test_pypy_c.test_struct.TestStruct object at 0x00000000164cc988> def test_struct_function(self): def main(n): import struct i = 1 while i < n: buf = struct.pack("<i", i) # ID: pack x = struct.unpack("<i", buf)[0] # ID: unpack i += x // i return i > log = self.run(main, [1000]) pypy/module/pypyjit/test_pypy_c/test_struct.py:27: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_struct.TestStruct object at 0x00000000164cc988> func_or_src = <function main at 0x0000000013fffb50>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000164ccbf0>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_struct_function.py', mode 'w' at 0x0000000015efbaa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_struct_function.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ________________________ TestStruct.test_struct_object _________________________ self = <pypy.module.pypyjit.test_pypy_c.test_struct.TestStruct object at 0x00000000171b3638> def test_struct_object(self): def main(n): import struct s = struct.Struct("ii") i = 1 while i < n: buf = s.pack(-1, i) # ID: pack x = s.unpack(buf)[1] # ID: unpack i += x // i return i > log = self.run(main, [1000]) pypy/module/pypyjit/test_pypy_c/test_struct.py:95: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_struct.TestStruct object at 0x00000000171b3638> func_or_src = <function main at 0x000000001330e638>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000171b38a0>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_struct_object.py', mode 'w' at 0x0000000015efbd20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_struct_object.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ______________________ TestStruct.test_unpack_raw_buffer _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_struct.TestStruct object at 0x0000000014918bb8> def test_unpack_raw_buffer(self): def main(n): import array import struct buf = struct.pack('H', 0x1234) buf = array.array('b', buf) i = 1 res = 0 while i < n: val = struct.unpack("h", buf)[0] # ID: unpack res += val i += 1 return res > log = self.run(main, [1000]) pypy/module/pypyjit/test_pypy_c/test_struct.py:130: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_struct.TestStruct object at 0x0000000014918bb8> func_or_src = <function main at 0x000000001330f3d0>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000014918de8>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unpack_raw_buffer.py', mode 'w' at 0x0000000015efbf20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unpack_raw_buffer.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _______________________ TestStruct.test_unpack_bytearray _______________________ self = <pypy.module.pypyjit.test_pypy_c.test_struct.TestStruct object at 0x000000001672ba60> def test_unpack_bytearray(self): def main(n): import struct buf = struct.pack('H', 0x1234) buf = bytearray(buf) i = 1 res = 0 while i < n: val = struct.unpack("h", buf)[0] # ID: unpack res += val i += 1 return res > log = self.run(main, [1000]) pypy/module/pypyjit/test_pypy_c/test_struct.py:150: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_struct.TestStruct object at 0x000000001672ba60> func_or_src = <function main at 0x000000001330fb50>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x000000001672bbe8>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unpack_bytearray.py', mode 'w' at 0x00000000163fe220> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_unpack_bytearray.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestStruct.test_pack_into_raw_buffer _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_struct.TestStruct object at 0x0000000017fc9590> def test_pack_into_raw_buffer(self): def main(n): import array import struct buf = array.array('b', b'\x00'*8) i = 1 while i < n: struct.pack_into("h", buf, 4, i) # ID: pack_into i += 1 return i > log = self.run(main, [1000]) pypy/module/pypyjit/test_pypy_c/test_struct.py:172: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_struct.TestStruct object at 0x0000000017fc9590> func_or_src = <function main at 0x00000000158a4368>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000017fc9868>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_pack_into_raw_buffer.py', mode 'w' at 0x00000000163fe420> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_pack_into_raw_buffer.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestStruct.test_pack_into_bytearray ______________________ self = <pypy.module.pypyjit.test_pypy_c.test_struct.TestStruct object at 0x00000000151c8598> def test_pack_into_bytearray(self): def main(n): import struct buf = bytearray(8) i = 1 while i < n: struct.pack_into("h", buf, 4, i) # ID: pack_into i += 1 return i > log = self.run(main, [1000]) pypy/module/pypyjit/test_pypy_c/test_struct.py:191: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_struct.TestStruct object at 0x00000000151c8598> func_or_src = <function main at 0x00000000158a4b60>, args = [1000] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000151c85d0>, funcname = 'main' arglist = '1000' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_pack_into_bytearray.py', mode 'w' at 0x00000000163fe520> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_pack_into_bytearray.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________________ TestThread.test_simple ____________________________ self = <pypy.module.pypyjit.test_pypy_c.test_thread.TestThread object at 0x00000000156aedb0> def test_simple(self): def main(n): try: import _thread as thread except ImportError: import thread def f(): i = 0 while i < n: i += 1 done.release() done = thread.allocate_lock() done.acquire() thread.start_new_thread(f, ()) done.acquire() return 0 > log = self.run(main, [500]) pypy/module/pypyjit/test_pypy_c/test_thread.py:22: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_thread.TestThread object at 0x00000000156aedb0> func_or_src = <function main at 0x00000000158a5358>, args = [500] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000156aede8>, funcname = 'main' arglist = '500' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_simple.py', mode 'w' at 0x00000000163fe720> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_simple.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________________ TestThread.test_tls ______________________________ self = <pypy.module.pypyjit.test_pypy_c.test_thread.TestThread object at 0x00000000156aefe0> def test_tls(self): def main(n): try: from _thread import _local except ImportError: from thread import _local local = _local() local.x = "abc" # prevent type unboxing local.x = 1 i = 0 while i < n: i += local.x return 0 > log = self.run(main, [500]) pypy/module/pypyjit/test_pypy_c/test_thread.py:46: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_thread.TestThread object at 0x00000000156aefe0> func_or_src = <function main at 0x00000000158a5448>, args = [500] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x00000000156aee20>, funcname = 'main' arglist = '500' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_tls.py', mode 'w' at 0x00000000163fee20> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_tls.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError _____________________ TestThread.test_lock_acquire_release _____________________ self = <pypy.module.pypyjit.test_pypy_c.test_thread.TestThread object at 0x0000000015c85718> def test_lock_acquire_release(self): def main(n): import threading lock = threading.Lock() while n > 0: with lock: n -= 1 > log = self.run(main, [500]) pypy/module/pypyjit/test_pypy_c/test_thread.py:66: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_thread.TestThread object at 0x0000000015c85718> func_or_src = <function main at 0x00000000158a58f8>, args = [500] import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000015c85750>, funcname = 'main' arglist = '500' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_lock_acquire_release.py', mode 'w' at 0x00000000163fefa0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_lock_acquire_release.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError ____________________ TestThread.test_make_ref_with_callback ____________________ self = <pypy.module.pypyjit.test_pypy_c.test_weakref.TestThread object at 0x0000000015786ad8> def test_make_ref_with_callback(self): log = self.run(""" import weakref class Dummy(object): pass def noop(obj): pass def main(n): obj = Dummy() for i in range(n): weakref.ref(obj, noop) > """, [500]) pypy/module/pypyjit/test_pypy_c/test_weakref.py:19: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pypy.module.pypyjit.test_pypy_c.test_weakref.TestThread object at 0x0000000015786ad8> func_or_src = '\n import weakref\n\n class Dummy(object):\n pass\n\n def noop(obj):\n pas... main(n):\n obj = Dummy()\n for i in range(n):\n weakref.ref(obj, noop)\n ' args = [500], import_site = False, discard_stdout_before_last_line = False jitopts = {'disable_unrolling': 9999, 'threshold': 200} src = <py._code.source.Source object at 0x0000000015786d78>, funcname = 'main' arglist = '500' f = <closed file '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_make_ref_with_callback.py', mode 'w' at 0x00000000163ff3a0> def run(self, func_or_src, args=[], import_site=False, discard_stdout_before_last_line=False, **jitopts): jitopts.setdefault('threshold', 200) jitopts.setdefault('disable_unrolling', 9999) if self.pypy_c is None: py.test.skip("run with --pypy=PATH") src = py.code.Source(func_or_src) if isinstance(func_or_src, types.FunctionType): funcname = func_or_src.func_name else: funcname = 'main' # write the snippet arglist = ', '.join(map(repr, args)) with self.filepath.open("w") as f: # we don't want to see the small bridges created # by the checkinterval reaching the limit f.write("import sys\n") f.write("sys.setcheckinterval(10000000)\n") f.write(str(src) + "\n") > f.write("print(%s(%s))\n" % (funcname, arglist)) E IOError: [Errno 28] No space left on device: '/tmp/pytest/usession-py3.12-1896/test-pypy-jit/test_make_ref_with_callback.py' pypy/module/pypyjit/test_pypy_c/test_00_model.py:62: IOError =========================== short test summary info ============================ FAIL pypy/module/pypyjit/test_pypy_c/test_buffers.py::TestBuffers::()::test_re_match FAIL pypy/module/pypyjit/test_pypy_c/test_instance.py::TestInstance::()::test_mutate_class_int FAIL pypy/module/pypyjit/test_pypy_c/test_instance.py::TestInstance::()::test_mutate_class FAIL pypy/module/pypyjit/test_pypy_c/test_instance.py::TestInstance::()::test_python_contains FAIL pypy/module/pypyjit/test_pypy_c/test_instance.py::TestInstance::()::test_id_compare_optimization FAIL pypy/module/pypyjit/test_pypy_c/test_instance.py::TestInstance::()::test_super FAIL pypy/module/pypyjit/test_pypy_c/test_instance.py::TestInstance::()::test_super_no_args FAIL pypy/module/pypyjit/test_pypy_c/test_instance.py::TestInstance::()::test_float_instance_field_read FAIL pypy/module/pypyjit/test_pypy_c/test_instance.py::TestInstance::()::test_float_instance_field_write FAIL pypy/module/pypyjit/test_pypy_c/test_instance.py::TestInstance::()::test_namedtuple_construction FAIL pypy/module/pypyjit/test_pypy_c/test_instance.py::TestInstance::()::test_add_instance_attr_big FAIL pypy/module/pypyjit/test_pypy_c/test_instance.py::TestInstance::()::test_add_instance_attr_unboxed FAIL pypy/module/pypyjit/test_pypy_c/test_instance.py::TestInstance::()::test_aliasing_via_class FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[0] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[1] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[2] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[3] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[4] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[5] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[6] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[7] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[8] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[9] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[10] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[11] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[12] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[13] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[14] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[15] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[16] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[17] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[18] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[19] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[20] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[21] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[22] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[23] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[24] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[25] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[26] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[27] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[28] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[29] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[30] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[31] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[32] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[33] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[34] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[35] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[36] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[37] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[38] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[39] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[40] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[41] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[42] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[43] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[44] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[45] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[46] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[47] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[48] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[49] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[50] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[51] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[52] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[53] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[54] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[55] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[56] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[57] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[58] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[59] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[60] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[61] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[62] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[63] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[64] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[65] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[66] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[67] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[68] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[69] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[70] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[71] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[72] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[73] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[74] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[75] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[76] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[77] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[78] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[79] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[80] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[81] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[82] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[83] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[84] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[85] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[86] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[87] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[88] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[89] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[90] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[91] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[92] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[93] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[94] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[95] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[96] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[97] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[98] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[99] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[100] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[101] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[102] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[103] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[104] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[105] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[106] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[107] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[108] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[109] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[110] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[111] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[112] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[113] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[114] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[115] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[116] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[117] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[118] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[119] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[120] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[121] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[122] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[123] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[124] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[125] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[126] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[127] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[128] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[129] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[130] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[131] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[132] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[133] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[134] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[135] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[136] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[137] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[138] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[139] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[140] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[141] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[142] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_simple::[143] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[0] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[1] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[2] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[3] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[4] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[5] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[6] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[7] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[8] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[9] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[10] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[11] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[12] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[13] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[14] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[15] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[16] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[17] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[18] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[19] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[20] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[21] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[22] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[23] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[24] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[25] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[26] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[27] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[28] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[29] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[30] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[31] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[32] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[33] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[34] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[35] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[36] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[37] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[38] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[39] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[40] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[41] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[42] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[43] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[44] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[45] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[46] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[47] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[48] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[49] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[50] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[51] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[52] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[53] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[54] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[55] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[56] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[57] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[58] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[59] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[60] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[61] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[62] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[63] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[64] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[65] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[66] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[67] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[68] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[69] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[70] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[71] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[72] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[73] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[74] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[75] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[76] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[77] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[78] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[79] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[80] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[81] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[82] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[83] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[84] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[85] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[86] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[87] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[88] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[89] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[90] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[91] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[92] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[93] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[94] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[95] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[96] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[97] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[98] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[99] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[100] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[101] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[102] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[103] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[104] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[105] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[106] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[107] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[108] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[109] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[110] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[111] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[112] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[113] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[114] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[115] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[116] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[117] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[118] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[119] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_mix::[120] FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_gt FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_sub_lt FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addsub_ge FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_addmul_ge FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_eq FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_intbound_mul FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_assert FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_xor FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_abs_branch_free FAIL pypy/module/pypyjit/test_pypy_c/test_intbound.py::TestIntbound::()::test_mul_int_long_uses_int_shortcut FAIL pypy/module/pypyjit/test_pypy_c/test_itertools.py::TestMisc::()::test_islice_step_is_1 FAIL pypy/module/pypyjit/test_pypy_c/test_itertools.py::TestMisc::()::test_islice_uses_greenkey FAIL pypy/module/pypyjit/test_pypy_c/test_jitlogparser.py::TestLogParser::()::test FAIL pypy/module/pypyjit/test_pypy_c/test_math.py::TestMath::()::test_log FAIL pypy/module/pypyjit/test_pypy_c/test_math.py::TestMath::()::test_sin_cos FAIL pypy/module/pypyjit/test_pypy_c/test_math.py::TestMath::()::test_pow_two FAIL pypy/module/pypyjit/test_pypy_c/test_math.py::TestMath::()::test_complex_power FAIL pypy/module/pypyjit/test_pypy_c/test_min_max.py::TestMinMax::()::test_min_max FAIL pypy/module/pypyjit/test_pypy_c/test_min_max.py::TestMinMax::()::test_silly_max FAIL pypy/module/pypyjit/test_pypy_c/test_min_max.py::TestMinMax::()::test_iter_max FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_f1 FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_factorial FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_mixed_type_loop FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_cached_pure_func_of_equal_fields FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_range_iter_simple FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_range_iter_normal FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_chain_of_guards FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_unpack_iterable_non_list_tuple FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_dont_trace_every_iteration FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_overflow_checking FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_global FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_eval FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_sys_exc_info FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_long_comparison FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_settrace FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_forward_jump_absolute_doesnt_start_loops FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_stat_result_virtual FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_locals FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_locals_in_inlined_function FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_sys_flags_access FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_tuple_slice FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_tuple_slice_virtual FAIL pypy/module/pypyjit/test_pypy_c/test_misc.py::TestMisc::()::test_id_no_rbigint FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_intbound FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_lshift_and_then_rshift FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_division_to_rshift FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_modulo_optimization FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_division_to_rshift_allcases FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_mod FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[0] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[1] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[2] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[3] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[4] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[5] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[6] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[7] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[8] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[9] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[10] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[11] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[12] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[13] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[14] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[15] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[16] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[17] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[18] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[19] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[20] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[21] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[22] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[23] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[24] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[25] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[26] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[27] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[28] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[29] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[30] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[31] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[32] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[33] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[34] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[35] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[36] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[37] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[38] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[39] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[40] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[41] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[42] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[43] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[44] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[45] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[46] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[47] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[48] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[49] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[50] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[51] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[52] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[53] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[54] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[55] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[56] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[57] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[58] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[59] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[60] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[61] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[62] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[63] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[64] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[65] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[66] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[67] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[68] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[69] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[70] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[71] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[72] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[73] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[74] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[75] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[76] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[77] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[78] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[79] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[80] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[81] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[82] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[83] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[84] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[85] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[86] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[87] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[88] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[89] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[90] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[91] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[92] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[93] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[94] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[95] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[96] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[97] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[98] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[99] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[100] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[101] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[102] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[103] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[104] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[105] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[106] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[107] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[108] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[109] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[110] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[111] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[112] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[113] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[114] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[115] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_shift_allcases::[116] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[0] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[1] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[2] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[3] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[4] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[5] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[6] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[7] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[8] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[9] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[10] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[11] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[12] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[13] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[14] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[15] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[16] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[17] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[18] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[19] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[20] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[21] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[22] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[23] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[24] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[25] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[26] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[27] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[28] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[29] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[30] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[31] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[32] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[33] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[34] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[35] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[36] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[37] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[38] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[39] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[40] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[41] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[42] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[43] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[44] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[45] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[46] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[47] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[48] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[49] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[50] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[51] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[52] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[53] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[54] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[55] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[56] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[57] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[58] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[59] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[60] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[61] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[62] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[63] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[64] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[65] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[66] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[67] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[68] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[69] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[70] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[71] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[72] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[73] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[74] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[75] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[76] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[77] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[78] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[79] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[80] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[81] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[82] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[83] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[84] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[85] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[86] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[87] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[88] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[89] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[90] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[91] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[92] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[93] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[94] FAIL pypy/module/pypyjit/test_pypy_c/test_shift.py::TestShift::()::test_revert_shift_allcases::[95] FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_python3_missing_bchr FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_lookup_default_encoding FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_int_base_16 FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_str_mod FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_remove_duplicate_method_calls_bytes FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_remove_duplicate_method_calls_unicode FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_lookup_codec FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_decode_ascii FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_unicode_indexing_makes_no_bridges FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_unicode_indexing_small_constant_indices FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_unicode_slicing_small_constant_indices FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_decode_encode FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_find FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_strip_doesnt_escape_bytes FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_unicode_strip_doesnt_escape_uniobject FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_unicode_strip_doesnt_escape_uniobject_ascii FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_unicode_splitlines_doesnt_allocate_uniobject FAIL pypy/module/pypyjit/test_pypy_c/test_string.py::TestString::()::test_textiowrapper_write_is_inlined FAIL pypy/module/pypyjit/test_pypy_c/test_struct.py::TestStruct::()::test_struct_function FAIL pypy/module/pypyjit/test_pypy_c/test_struct.py::TestStruct::()::test_struct_object FAIL pypy/module/pypyjit/test_pypy_c/test_struct.py::TestStruct::()::test_unpack_raw_buffer FAIL pypy/module/pypyjit/test_pypy_c/test_struct.py::TestStruct::()::test_unpack_bytearray FAIL pypy/module/pypyjit/test_pypy_c/test_struct.py::TestStruct::()::test_pack_into_raw_buffer FAIL pypy/module/pypyjit/test_pypy_c/test_struct.py::TestStruct::()::test_pack_into_bytearray FAIL pypy/module/pypyjit/test_pypy_c/test_thread.py::TestThread::()::test_simple FAIL pypy/module/pypyjit/test_pypy_c/test_thread.py::TestThread::()::test_tls FAIL pypy/module/pypyjit/test_pypy_c/test_thread.py::TestThread::()::test_lock_acquire_release FAIL pypy/module/pypyjit/test_pypy_c/test_weakref.py::TestThread::()::test_make_ref_with_callback ======= 568 failed, 464 passed, 162 skipped, 1 xfailed in 149.53 seconds ======= program finished with exit code 1 elapsedTime=150.684850