[pypy-commit] pypy vmprof2: try to fix those tests

fijal noreply at buildbot.pypy.org
Wed Apr 22 18:21:15 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: vmprof2
Changeset: r76890:233ac16e55d6
Date: 2015-04-22 18:21 +0200
http://bitbucket.org/pypy/pypy/changeset/233ac16e55d6/

Log:	try to fix those tests

diff --git a/pypy/module/pypyjit/test_pypy_c/model.py b/pypy/module/pypyjit/test_pypy_c/model.py
--- a/pypy/module/pypyjit/test_pypy_c/model.py
+++ b/pypy/module/pypyjit/test_pypy_c/model.py
@@ -134,7 +134,8 @@
 
     def _ops_for_chunk(self, chunk, include_guard_not_invalidated):
         for op in chunk.operations:
-            if op.name != 'debug_merge_point' and \
+            if op.name not in ('debug_merge_point', 'enter_portal_frame',
+                               'leave_portal_frame') and \
                 (op.name != 'guard_not_invalidated' or include_guard_not_invalidated):
                 yield op
 


More information about the pypy-commit mailing list