Author: Ronan Lamy <[email protected]>
Branch: llimpl
Changeset: r82109:d6f84983b21e
Date: 2016-02-07 20:21 +0000
http://bitbucket.org/pypy/pypy/changeset/d6f84983b21e/

Log:    fix gctransform tests

diff --git a/rpython/memory/gctransform/test/test_transform.py 
b/rpython/memory/gctransform/test/test_transform.py
--- a/rpython/memory/gctransform/test/test_transform.py
+++ b/rpython/memory/gctransform/test/test_transform.py
@@ -5,6 +5,7 @@
 from rpython.translator.exceptiontransform import ExceptionTransformer
 from rpython.rtyper.lltypesystem import lltype
 from rpython.conftest import option
+from rpython.rtyper.rtyper import llinterp_backend
 
 
 class LLInterpedTranformerTests:
@@ -131,8 +132,10 @@
 def rtype(func, inputtypes, specialize=True):
     t = TranslationContext()
     t.buildannotator().build_types(func, inputtypes)
+    rtyper = t.buildrtyper()
+    rtyper.backend = llinterp_backend
     if specialize:
-        t.buildrtyper().specialize()
+        rtyper.specialize()
     if option.view:
         t.view()
     return t
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to