Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r88770:226ca1a1aeee
Date: 2016-11-30 16:00 +0100
http://bitbucket.org/pypy/pypy/changeset/226ca1a1aeee/

Log:    possibly fix the test---the comparison might have been removed by
        the AST compiler

diff --git a/pypy/module/pypyjit/test_pypy_c/test_misc.py 
b/pypy/module/pypyjit/test_pypy_c/test_misc.py
--- a/pypy/module/pypyjit/test_pypy_c/test_misc.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_misc.py
@@ -387,7 +387,8 @@
     def test_long_comparison(self):
         def main(n):
             while n:
-                12345L > 123L  # ID: long_op
+                x = 12345L
+                x > 123L  # ID: long_op
                 n -= 1
 
         log = self.run(main, [300])
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to