[pypy-commit] pypy arm64: make tests more consistent on 64bit and test more combinations of types

fijal pypy.commits at gmail.com
Mon Apr 22 05:21:42 EDT 2019


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: arm64
Changeset: r96531:03aa7d305b2f
Date: 2019-04-22 09:20 +0000
http://bitbucket.org/pypy/pypy/changeset/03aa7d305b2f/

Log:	make tests more consistent on 64bit and test more combinations of
	types

diff --git a/rpython/jit/backend/test/runner_test.py b/rpython/jit/backend/test/runner_test.py
--- a/rpython/jit/backend/test/runner_test.py
+++ b/rpython/jit/backend/test/runner_test.py
@@ -542,8 +542,10 @@
             return chr(ord(c) + ord(c1))
 
         functions = [
-            (func_int, lltype.Signed, types.sint, 655360, 655360),
-            (func_int, lltype.Signed, types.sint, 655360, -293999429),
+            (func_int, lltype.Signed, types.slong, 655360, 655360),
+            (func_int, lltype.Signed, types.slong, 655360, -293999429),
+            (func_int, rffi.INT, types.sint, 655360, 655360),
+            (func_int, rffi.INT, types.sint, 655360, -293999429),
             (func_int, rffi.SHORT, types.sint16, 1213, 1213),
             (func_int, rffi.SHORT, types.sint16, 1213, -12020),
             (func_char, lltype.Char, types.uchar, 12, 12),


More information about the pypy-commit mailing list