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

arigo at codespeak.net arigo at codespeak.net
Tue Apr 14 11:44:51 CEST 2009


Author: arigo
Date: Tue Apr 14 11:44:49 2009
New Revision: 64049

Modified:
   pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test/test_loop.py
Log:
Invalid hint -- disable the test until I know more.


Modified: pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test/test_loop.py
==============================================================================
--- pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test/test_loop.py	(original)
+++ pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test/test_loop.py	Tue Apr 14 11:44:49 2009
@@ -505,9 +505,13 @@
 
 
     def test_path_with_operations_not_from_start_2(self):
+        py.test.skip("invalid hint??")
         jitdriver = JitDriver(greens = ['k'], reds = ['n', 'z'])
 
         def some_fn(n, k, z):
+            # XXX I may be missing the point of this test, but as such it
+            # is an invalid hint: why pass "n+1" as "n" here, when the
+            # next jit_merge_point is seeing really "n"?
             jitdriver.can_enter_jit(n=n+1, k=k, z=z)
 
         def f(n):



More information about the Pypy-commit mailing list