[pypy-svn] r67174 - pypy/branch/pyjitpl5/pypy/jit/metainterp/test

arigo at codespeak.net arigo at codespeak.net
Mon Aug 24 20:54:26 CEST 2009


Author: arigo
Date: Mon Aug 24 20:54:25 2009
New Revision: 67174

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_optimizefindnode.py
Log:
ARGH.


Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_optimizefindnode.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_optimizefindnode.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_optimizefindnode.py	Mon Aug 24 20:54:25 2009
@@ -667,6 +667,17 @@
         """
         self.find_nodes(ops, 'Constant(myptr)', p2=self.myptr)
 
+    def test_find_nodes_call_escapes(self):
+        py.test.skip("ARGH, bug")
+        ops = """
+        [i0, p1, p4]
+        p2 = new_with_vtable(ConstClass(node_vtable))
+        setfield_gc(p1, p2, descr=nextdescr)
+        call(i0)
+        p3 = getfield_gc(p1, descr=nextdescr)
+        jump(i0, p1, p3)
+        """
+        self.find_nodes(ops, 'Not, Not, Not')
 
     # ------------------------------
     # Bridge tests



More information about the Pypy-commit mailing list