[pypy-commit] pypy py3k: disable interp level W_IntObject tests

pjenvey noreply at buildbot.pypy.org
Fri Apr 5 03:10:20 CEST 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r63038:b0b275ecce2a
Date: 2013-04-04 18:08 -0700
http://bitbucket.org/pypy/pypy/changeset/b0b275ecce2a/

Log:	disable interp level W_IntObject tests

diff --git a/pypy/objspace/std/test/test_intobject.py b/pypy/objspace/std/test/test_intobject.py
--- a/pypy/objspace/std/test/test_intobject.py
+++ b/pypy/objspace/std/test/test_intobject.py
@@ -5,8 +5,10 @@
 from rpython.rlib.rarithmetic import r_uint, is_valid_int
 from rpython.rlib.rbigint import rbigint
 
+class TestW_IntObject:
 
-class TestW_IntObject:
+    def setup_class(cls):
+        py.test.skip("W_IntObject was replaced w/ W_LongObject in py3k")
 
     def _longshiftresult(self, x):
         """ calculate an overflowing shift """


More information about the pypy-commit mailing list