[pypy-svn] r69748 - pypy/branch/virtual-forcing/pypy/jit/metainterp/test
arigo at codespeak.net
arigo at codespeak.net
Mon Nov 30 10:56:47 CET 2009
Author: arigo
Date: Mon Nov 30 10:56:47 2009
New Revision: 69748
Modified:
pypy/branch/virtual-forcing/pypy/jit/metainterp/test/test_del.py
Log:
This will not be fixed right now.
Modified: pypy/branch/virtual-forcing/pypy/jit/metainterp/test/test_del.py
==============================================================================
--- pypy/branch/virtual-forcing/pypy/jit/metainterp/test/test_del.py (original)
+++ pypy/branch/virtual-forcing/pypy/jit/metainterp/test/test_del.py Mon Nov 30 10:56:47 2009
@@ -78,7 +78,9 @@
return 1
res = self.meta_interp(f, [20], optimizer=OPTIMIZER_SIMPLE)
assert res == 1
- self.check_loops(call=1) # for the case B(), but not for the case A()
+ self.check_loops(call_may_force=1)
+ # for the case B(), but not for the case A()
+ # XXX it should really be 'call', not 'call_may_force'.
class TestLLtype(DelTests, LLJitMixin):
More information about the Pypy-commit
mailing list