[pypy-commit] pypy default: fix two tests

fijal noreply at buildbot.pypy.org
Sun Oct 4 10:31:42 CEST 2015


Author: fijal
Branch: 
Changeset: r79959:a1520085087f
Date: 2015-10-04 10:23 +0200
http://bitbucket.org/pypy/pypy/changeset/a1520085087f/

Log:	fix two tests

diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst
--- a/pypy/doc/whatsnew-head.rst
+++ b/pypy/doc/whatsnew-head.rst
@@ -43,3 +43,8 @@
 .. branch: numpy-ctypes
 
 Add support for ndarray.ctypes property.
+
+.. branch: share-guard-info
+
+Share guard resume data between consecutive guards that have only
+pure operations and guards in between.
\ No newline at end of file
diff --git a/rpython/jit/metainterp/test/test_ajit.py b/rpython/jit/metainterp/test/test_ajit.py
--- a/rpython/jit/metainterp/test/test_ajit.py
+++ b/rpython/jit/metainterp/test/test_ajit.py
@@ -4075,7 +4075,7 @@
         assert res == 2
         res = self.interp_operations(f, [], supports_longlong=True)
         assert res == 2
-        self.check_operations_history(call_release_gil=1, call_may_force=0)
+        self.check_operations_history(call_release_gil_i=1, call_may_force_i=0)
 
     def test_unescaped_write_zero(self):
         class A:


More information about the pypy-commit mailing list