[pypy-svn] r43813 - pypy/dist/pypy/translator/c/test

fijal at codespeak.net fijal at codespeak.net
Mon May 28 18:39:18 CEST 2007


Author: fijal
Date: Mon May 28 18:39:13 2007
New Revision: 43813

Modified:
   pypy/dist/pypy/translator/c/test/test_genc.py
Log:
Failing test. seems that print is doing one bit too much allocation


Modified: pypy/dist/pypy/translator/c/test/test_genc.py
==============================================================================
--- pypy/dist/pypy/translator/c/test/test_genc.py	(original)
+++ pypy/dist/pypy/translator/c/test/test_genc.py	Mon May 28 18:39:13 2007
@@ -365,3 +365,11 @@
     s = t.buildannotator().build_types(f, [])
     rtyper = t.buildrtyper(type_system="lltype")
     rtyper.specialize()
+
+def test_x():
+    py.test.skip("Failing test. Seems that print allocs one bit too much")
+    def f():
+        print "xxx"
+
+    fn = compile(f, [])
+    fn()



More information about the Pypy-commit mailing list