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

cfbolz at codespeak.net cfbolz at codespeak.net
Fri Apr 7 19:44:50 CEST 2006


Author: cfbolz
Date: Fri Apr  7 19:44:50 2006
New Revision: 25521

Modified:
   pypy/dist/pypy/translator/test/test_interactive.py
Log:
this is no longer supported


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	Fri Apr  7 19:44:50 2006
@@ -96,19 +96,6 @@
 
     assert 'backendopt' not in t.driver.done
 
-    t = Translation(f, [int, int])
-    t.disable(['annotate'])
-    t.source_c()
-
-    assert 'annotate' not in t.driver.done and 'rtype' not in t.driver.done
-
-    t = Translation(f, [int, int])
-    t.disable(['rtype'])
-    t.source_c()
-
-    assert 'annotate' in t.driver.done
-    assert 'rtype' not in t.driver.done and 'backendopt' not in t.driver.done
-
 def test_simple_compile_c():
     def f(x,y):
         return x+y



More information about the Pypy-commit mailing list