[pypy-commit] pypy py3k: skip rope marshal tests: ropes are broken in py3k

antocuni noreply at buildbot.pypy.org
Tue Mar 20 19:08:56 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r53840:affdf51671da
Date: 2012-03-20 18:07 +0100
http://bitbucket.org/pypy/pypy/changeset/affdf51671da/

Log:	skip rope marshal tests: ropes are broken in py3k

diff --git a/pypy/module/marshal/test/test_marshal.py b/pypy/module/marshal/test/test_marshal.py
--- a/pypy/module/marshal/test/test_marshal.py
+++ b/pypy/module/marshal/test/test_marshal.py
@@ -182,6 +182,9 @@
 
 class AppTestRope(AppTestMarshal):
     def setup_class(cls):
+        import py
+        # space.bytes_w(w_some_rope) doesn't work
+        py.test.skip('rope does not work')
         from pypy.conftest import gettestobjspace
         cls.space = gettestobjspace(**{"objspace.std.withrope": True})
         AppTestMarshal.setup_class.im_func(cls)


More information about the pypy-commit mailing list