[pypy-commit] pypy arm-backend-2: disable longlong test

bivab noreply at buildbot.pypy.org
Mon Aug 20 17:58:49 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r56768:8a87bd5f8674
Date: 2012-08-20 14:26 +0000
http://bitbucket.org/pypy/pypy/changeset/8a87bd5f8674/

Log:	disable longlong test

diff --git a/pypy/jit/backend/test/runner_test.py b/pypy/jit/backend/test/runner_test.py
--- a/pypy/jit/backend/test/runner_test.py
+++ b/pypy/jit/backend/test/runner_test.py
@@ -1857,6 +1857,8 @@
     def test_convert_float_bytes(self):
         if not self.cpu.supports_floats:
             py.test.skip("requires floats")
+        if not self.cpu.supports_longlong:
+            py.test.skip("longlong test")
         t = 'int' if longlong.is_64_bit else 'float'
         res = self.execute_operation(rop.CONVERT_FLOAT_BYTES_TO_LONGLONG,
                                      [boxfloat(2.5)], t).value


More information about the pypy-commit mailing list