[pypy-commit] pypy ppc-jit-backend: Skip floating point tests for now.

hager noreply at buildbot.pypy.org
Fri Jul 22 16:57:33 CEST 2011


Author: hager <sven.hager at uni-duesseldorf.de>
Branch: ppc-jit-backend
Changeset: r45885:a6907c4a6995
Date: 2011-07-22 16:55 +0200
http://bitbucket.org/pypy/pypy/changeset/a6907c4a6995/

Log:	Skip floating point tests for now.

diff --git a/pypy/jit/backend/ppc/ppcgen/test/test_runner.py b/pypy/jit/backend/ppc/ppcgen/test/test_runner.py
--- a/pypy/jit/backend/ppc/ppcgen/test/test_runner.py
+++ b/pypy/jit/backend/ppc/ppcgen/test/test_runner.py
@@ -4,8 +4,14 @@
 class FakeStats(object):
     pass
 
+#def skip(self):
+#    py.test.skip("not done")
+
 class TestPPC(LLtypeBackendTest):
     
+    test_float_operations = skip
+
     def setup_method(self, method):
         self.cpu = PPC_64_CPU(rtyper=None, stats=FakeStats())
         self.cpu.setup_once()
+


More information about the pypy-commit mailing list