Author: Ronan Lamy <[email protected]>
Branch: kill-ootype
Changeset: r65557:aea6a7833798
Date: 2013-07-23 16:05 +0200
http://bitbucket.org/pypy/pypy/changeset/aea6a7833798/

Log:    rm now useless test

diff --git a/rpython/translator/test/test_interactive.py 
b/rpython/translator/test/test_interactive.py
--- a/rpython/translator/test/test_interactive.py
+++ b/rpython/translator/test/test_interactive.py
@@ -78,18 +78,3 @@
     dll = ctypes.CDLL(str(t.driver.c_entryp))
     f = dll.pypy_g_f
     assert f(2, 3) == 5
-
-def test_simple_rtype_with_type_system():
-
-    def f(x,y):
-        return x+y
-
-    t = Translation(f, [int, int])
-    t.rtype(type_system='lltype')
-
-    assert 'rtype_lltype' in t.driver.done
-
-    t = Translation(f, [int, int], backend='cli')
-    t.annotate()
-    py.test.raises(Exception, "t.rtype(type_system='lltype')")
-
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to