[pypy-svn] r46089 - pypy/branch/pypy-more-rtti-inprogress/rpython/memory/test

fijal at codespeak.net fijal at codespeak.net
Tue Aug 28 13:16:37 CEST 2007


Author: fijal
Date: Tue Aug 28 13:16:36 2007
New Revision: 46089

Modified:
   pypy/branch/pypy-more-rtti-inprogress/rpython/memory/test/test_llinterpsim.py
Log:
Malloc checking here makes little sense


Modified: pypy/branch/pypy-more-rtti-inprogress/rpython/memory/test/test_llinterpsim.py
==============================================================================
--- pypy/branch/pypy-more-rtti-inprogress/rpython/memory/test/test_llinterpsim.py	(original)
+++ pypy/branch/pypy-more-rtti-inprogress/rpython/memory/test/test_llinterpsim.py	Tue Aug 28 13:16:36 2007
@@ -39,7 +39,7 @@
         
         t, typer, graph = gengraph(func, [annotation(x)
                       for x in values], viewbefore, policy)
-        interp = LLInterpreter(typer, heap=gclltype)
+        interp = LLInterpreter(typer, heap=gclltype, malloc_check=False)
         _tcache[key] = (t, interp, graph)
         # keep the cache small 
         _lastinterpreted.append(key) 



More information about the Pypy-commit mailing list