[pypy-svn] r48818 - pypy/dist/pypy/translator/test

fijal at codespeak.net fijal at codespeak.net
Tue Nov 20 13:21:16 CET 2007


Author: fijal
Date: Tue Nov 20 13:21:16 2007
New Revision: 48818

Modified:
   pypy/dist/pypy/translator/test/test_interactive.py
Log:
s/squeak/cli in rtyper tests


Modified: pypy/dist/pypy/translator/test/test_interactive.py
==============================================================================
--- pypy/dist/pypy/translator/test/test_interactive.py	(original)
+++ pypy/dist/pypy/translator/test/test_interactive.py	Tue Nov 20 13:21:16 2007
@@ -138,20 +138,20 @@
 
     t = Translation(f)
     s = t.annotate([int, int])
-    t.rtype(backend='squeak')
+    t.rtype(backend='cli')
     assert 'rtype_ootype' in t.driver.done
 
 
-    t = Translation(f, backend='squeak', type_system='ootype')
+    t = Translation(f, backend='cli', type_system='ootype')
     s = t.annotate([int, int])
     t.rtype()
     assert 'rtype_ootype' in t.driver.done        
 
     t = Translation(f, type_system='lltype')
     s = t.annotate([int, int])
-    py.test.raises(Exception, "t.rtype(backend='squeak')")
+    py.test.raises(Exception, "t.rtype(backend='cli')")
 
-    t = Translation(f, backend='squeak')
+    t = Translation(f, backend='cli')
     s = t.annotate([int, int])
     py.test.raises(Exception, "t.rtype(type_system='lltype')")
 



More information about the Pypy-commit mailing list