[pypy-svn] pypy shorter-float-repr: Skip formatd tests on ootype

amauryfa commits-noreply at bitbucket.org
Fri Jan 21 14:42:42 CET 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: shorter-float-repr
Changeset: r41131:a86820dab81f
Date: 2011-01-21 14:41 +0100
http://bitbucket.org/pypy/pypy/changeset/a86820dab81f/

Log:	Skip formatd tests on ootype

diff --git a/pypy/rlib/test/test_rarithmetic.py b/pypy/rlib/test/test_rarithmetic.py
--- a/pypy/rlib/test/test_rarithmetic.py
+++ b/pypy/rlib/test/test_rarithmetic.py
@@ -390,9 +390,11 @@
     pass
 
 class TestOOtype(BaseTestRarithmetic, OORtypeMixin):
+    def test_formatd(self):
+        skip('formatd is broken on ootype')
+
     def test_formatd_repr(self):
-        if sys.version_info < (2, 7):
-            skip('cannot oofake short float repr before python 2.7')
+        skip('formatd is broken on ootype')
 
 def test_isinf():
     assert isinf(INFINITY)


More information about the Pypy-commit mailing list