[pypy-svn] r63240 - pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test

arigo at codespeak.net arigo at codespeak.net
Mon Mar 23 16:45:15 CET 2009


Author: arigo
Date: Mon Mar 23 16:45:14 2009
New Revision: 63240

Modified:
   pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test/test_send.py
Log:
Fix this test too.


Modified: pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test/test_send.py
==============================================================================
--- pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test/test_send.py	(original)
+++ pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test/test_send.py	Mon Mar 23 16:45:14 2009
@@ -22,7 +22,7 @@
             return c
         res = self.meta_interp(f, [1])
         assert res == 2
-        self.check_loops({'jump': 1, 'merge_point': 1,
+        self.check_loops({'jump': 1,
                           'int_sub': 1, 'int_gt' : 1,
                           'guard_true': 1})    # all folded away
 
@@ -74,7 +74,7 @@
         assert res == 43
         self.check_loops({'call': 1, 'guard_no_exception': 1,
                           'getfield_gc': 1,
-                          'int_add': 1, 'merge_point' : 1,
+                          'int_add': 1,
                           'jump': 1, 'int_gt' : 1, 'guard_true' : 1,
                           'int_sub' : 1})
 



More information about the Pypy-commit mailing list