[pypy-commit] pypy default: fix test_pypy_c:test_struct_module after 8e51b6cb4481

bdkearns noreply at buildbot.pypy.org
Thu Feb 6 21:36:14 CET 2014


Author: Brian Kearns <bdkearns at gmail.com>
Branch: 
Changeset: r69090:dc128e49e02e
Date: 2014-02-06 15:33 -0500
http://bitbucket.org/pypy/pypy/changeset/dc128e49e02e/

Log:	fix test_pypy_c:test_struct_module after 8e51b6cb4481

diff --git a/pypy/module/pypyjit/test_pypy_c/test_misc.py b/pypy/module/pypyjit/test_pypy_c/test_misc.py
--- a/pypy/module/pypyjit/test_pypy_c/test_misc.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_misc.py
@@ -333,8 +333,8 @@
         loop, = log.loops_by_id("struct")
         if sys.maxint == 2 ** 63 - 1:
             extra = """
-            i8 = int_lt(i4, -2147483648)
-            guard_false(i8, descr=...)
+            i8 = int_ge(i4, -2147483648)
+            guard_true(i8, descr=...)
             """
         else:
             extra = ""


More information about the pypy-commit mailing list