Author: mattip <matti.pi...@gmail.com>
Branch: 
Changeset: r79605:63de0ec77acd
Date: 2015-09-13 14:59 +0300
http://bitbucket.org/pypy/pypy/changeset/63de0ec77acd/

Log:    fix more test(s)

diff --git a/pypy/module/_rawffi/array.py b/pypy/module/_rawffi/array.py
--- a/pypy/module/_rawffi/array.py
+++ b/pypy/module/_rawffi/array.py
@@ -89,6 +89,7 @@
         # function call, ffi_call() writes 8 bytes into it even if the
         # function's result type asks for less.
         memsize = clibffi.adjust_return_size(memsize)
+        import pdb;pdb.set_trace()
         W_DataInstance.__init__(self, space, memsize, address)
         self.length = length
         self.shape = shape
diff --git a/rpython/jit/backend/test/runner_test.py 
b/rpython/jit/backend/test/runner_test.py
--- a/rpython/jit/backend/test/runner_test.py
+++ b/rpython/jit/backend/test/runner_test.py
@@ -2602,10 +2602,10 @@
         ops = []
         for i in range(50):
             ops += [
-                ResOperation(rop.CALL_RELEASE_GIL_N,
+                ResOperation(rop.CALL_RELEASE_GIL_I,
                              [ConstInt(0), funcbox, i1, i2],
                              descr=calldescr),
-                ResOperation(rop.GUARD_NOT_FORCED, [], None, descr=faildescr),
+                ResOperation(rop.GUARD_NOT_FORCED, [], descr=faildescr),
                 ]
             i3 = ops[-2]
             ops[-1].setfailargs([])
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to