[pypy-commit] pypy default: skipt tests that require floats

bivab noreply at buildbot.pypy.org
Fri Mar 29 17:00:00 CET 2013


Author: David Schneider <david.schneider at picle.org>
Branch: 
Changeset: r62876:61eafab0ddcb
Date: 2013-03-29 17:58 +0200
http://bitbucket.org/pypy/pypy/changeset/61eafab0ddcb/

Log:	skipt tests that require floats

diff --git a/rpython/jit/backend/llsupport/test/test_regalloc_integration.py b/rpython/jit/backend/llsupport/test/test_regalloc_integration.py
--- a/rpython/jit/backend/llsupport/test/test_regalloc_integration.py
+++ b/rpython/jit/backend/llsupport/test/test_regalloc_integration.py
@@ -515,6 +515,10 @@
         # FIXME: Verify that i19 - i23 are removed
 
 class TestRegallocFloats(BaseTestRegalloc):
+    def setup_class(cls):
+        if not cls.cpu.supports_floats:
+            py.test.skip("needs float support")
+
     def test_float_add(self):
         ops = '''
         [f0, f1]


More information about the pypy-commit mailing list