[pypy-commit] pypy fast-slowpath: fix this test

fijal noreply at buildbot.pypy.org
Thu Jul 25 11:49:15 CEST 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: fast-slowpath
Changeset: r65637:a040b8053e49
Date: 2013-07-25 11:17 +0200
http://bitbucket.org/pypy/pypy/changeset/a040b8053e49/

Log:	fix this test

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
@@ -2280,9 +2280,9 @@
 
             ops = '''
             [i0, i1, i2, i3, i4, i5, i6, f0, f1]
-            cond_call(i1, ConstClass(func_ptr), %s, descr=calldescr)
+            cond_call(i1, ConstClass(func_ptr), %s)
             guard_false(i0, descr=faildescr) [i1, i2, i3, i4, i5, i6, f0, f1]
-            ''' % ', '.join(['i%d' % (j + 2) for j in range(i)])
+            ''' % ', '.join(['i%d' % (j + 2) for j in range(i)] + ["descr=calldescr"])
             loop = parse(ops, namespace={'faildescr': BasicFailDescr(),
                                          'func_ptr': func_ptr,
                                          'calldescr': calldescr})


More information about the pypy-commit mailing list