[pypy-svn] r15847 - pypy/dist/pypy/rpython/test

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Aug 9 18:26:07 CEST 2005


Author: cfbolz
Date: Tue Aug  9 18:26:06 2005
New Revision: 15847

Modified:
   pypy/dist/pypy/rpython/test/test_llinterp.py
Log:
oops. accidentally checked in test_llinterp version that always uses
lltypesimulation


Modified: pypy/dist/pypy/rpython/test/test_llinterp.py
==============================================================================
--- pypy/dist/pypy/rpython/test/test_llinterp.py	(original)
+++ pypy/dist/pypy/rpython/test/test_llinterp.py	Tue Aug  9 18:26:06 2005
@@ -9,7 +9,6 @@
 from pypy.rpython import rstr
 from pypy.annotation.model import lltype_to_annotation
 from pypy.rpython.rarithmetic import r_uint, ovfcheck
-from pypy.rpython.memory import gclltype
 
 # switch on logging of interp to show more info on failing tests
 
@@ -74,8 +73,7 @@
         
         t, typer = gengraph(func, [annotation(x)
                       for x in values], viewbefore, policy)
-        interp = LLInterpreter(t.flowgraphs, typer, gclltype,
-                               gclltype.prepare_graphs)
+        interp = LLInterpreter(t.flowgraphs, typer)
         _tcache[key] = (t, interp)
         # keep the cache small 
         _lastinterpreted.append(key) 



More information about the Pypy-commit mailing list