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

fijal at codespeak.net fijal at codespeak.net
Wed Mar 11 12:00:23 CET 2009


Author: fijal
Date: Wed Mar 11 12:00:23 2009
New Revision: 62848

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_virtualizable.py
Log:
welll... my fault


Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_virtualizable.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_virtualizable.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_virtualizable.py	Wed Mar 11 12:00:23 2009
@@ -372,7 +372,6 @@
         assert res == f(10)
 
     def test_read_after_loop(self):
-        py.test.skip("FIXME")
         jitdriver = JitDriver(greens = [], reds = ['frame', 'n'],
                               virtualizables = ['frame'])
 
@@ -393,7 +392,7 @@
             return frame.x
 
         res = self.meta_interp(f, [30])
-        assert res == f(10)
+        assert res == f(30)
     
     def test_read_after_loop_2(self):
         jitdriver = JitDriver(greens = [], reds = ['frame', 'n'],



More information about the Pypy-commit mailing list