[pypy-svn] r62526 - in pypy/branch/pyjitpl5/pypy/jit/metainterp: . test

fijal at codespeak.net fijal at codespeak.net
Wed Mar 4 15:39:05 CET 2009


Author: fijal
Date: Wed Mar  4 15:39:05 2009
New Revision: 62526

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/graphpage.py
   pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_virtual.py
Log:
oops oops, this was not meant to go inside


Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/graphpage.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/graphpage.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/graphpage.py	Wed Mar  4 15:39:05 2009
@@ -68,10 +68,10 @@
         _prev = Box._extended_display
         try:
             Box._extended_display = False
-            if len(self.graphs) > 1:
-                graphs = self.graphs[1:]
-            else:
-                graphs = self.graphs
+            #if len(self.graphs) > 1:
+            #    graphs = self.graphs[1:]
+            #else:
+            graphs = self.graphs
             for i, graph in enumerate(graphs):
                 self.gengraph(graph, i)
         finally:

Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_virtual.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_virtual.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_virtual.py	Wed Mar  4 15:39:05 2009
@@ -168,9 +168,6 @@
         res = self.meta_interp(f, [20])
         assert res == 9
 
-    def test_immutable_constant_getfield(self):
-        xxx
-
 ##class TestOOtype(VirtualTests, OOJitMixin):
 ##    _new = staticmethod(ootype.new)
 



More information about the Pypy-commit mailing list