[pypy-commit] pypy default: really fix tests

cfbolz pypy.commits at gmail.com
Mon Sep 11 03:04:58 EDT 2017


Author: Carl Friedrich Bolz-Tereick <cfbolz at gmx.de>
Branch: 
Changeset: r92366:361e12f80c69
Date: 2017-09-11 09:04 +0200
http://bitbucket.org/pypy/pypy/changeset/361e12f80c69/

Log:	really fix tests

diff --git a/rpython/jit/codewriter/test/test_longlong.py b/rpython/jit/codewriter/test/test_longlong.py
--- a/rpython/jit/codewriter/test/test_longlong.py
+++ b/rpython/jit/codewriter/test/test_longlong.py
@@ -17,7 +17,7 @@
 class FakeBuiltinCallControl:
     def guess_call_kind(self, op):
         return 'builtin'
-    def getcalldescr(self, op, oopspecindex=None, **kwargs):
+    def getcalldescr(self, op, oopspecindex=None, extraeffect=None, extradescr=None, **kwargs):
         assert oopspecindex is not None    # in this test
         return 'calldescr-%d' % oopspecindex
     def calldescr_canraise(self, calldescr):


More information about the pypy-commit mailing list