[pypy-commit] pypy arm-backend-2: mark test_convert_float_bytes as requiring longlong support

bivab noreply at buildbot.pypy.org
Thu Apr 5 14:19:10 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r54203:20eca32afd29
Date: 2012-03-28 11:37 +0000
http://bitbucket.org/pypy/pypy/changeset/20eca32afd29/

Log:	mark test_convert_float_bytes as requiring longlong support

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
@@ -1776,6 +1776,8 @@
         assert res == -19
 
     def test_convert_float_bytes(self):
+        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