[pypy-svn] r16522 - pypy/dist/pypy/translator/llvm2/test

ericvrp at codespeak.net ericvrp at codespeak.net
Thu Aug 25 18:49:17 CEST 2005


Author: ericvrp
Date: Thu Aug 25 18:49:15 2005
New Revision: 16522

Modified:
   pypy/dist/pypy/translator/llvm2/test/test_typed.py
Log:
removed test that should not be here


Modified: pypy/dist/pypy/translator/llvm2/test/test_typed.py
==============================================================================
--- pypy/dist/pypy/translator/llvm2/test/test_typed.py	(original)
+++ pypy/dist/pypy/translator/llvm2/test/test_typed.py	Thu Aug 25 18:49:15 2005
@@ -264,16 +264,6 @@
     f = compile_function(wrapper, [int])
     assert f(42)
 
-def test_float2int():
-    py.test.skip("RTyper is cheating")
-    def fn(f):
-        return str(f)
-    def wrapper():
-        res = fn(1.0)
-        return res == "1.0"
-    f = compile_function(wrapper, [])
-    assert f()
-
 def test_int_invert():
     def fn(i):
         return ~i



More information about the Pypy-commit mailing list