Author: Maciej Fijalkowski <[email protected]>
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),
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to