Author: Ronan Lamy <[email protected]>
Branch: exc-later
Changeset: r80733:a1880cbfdd83
Date: 2015-11-17 19:07 +0000
http://bitbucket.org/pypy/pypy/changeset/a1880cbfdd83/

Log:    Fix rpython/jit/codewriter/test/test_flatten.py::TestFlatten::()::te
        st_int_floordiv_ovf_zer

diff --git a/rpython/jit/codewriter/test/test_flatten.py 
b/rpython/jit/codewriter/test/test_flatten.py
--- a/rpython/jit/codewriter/test/test_flatten.py
+++ b/rpython/jit/codewriter/test/test_flatten.py
@@ -140,7 +140,7 @@
 
     def encoding_test(self, func, args, expected,
                       transform=False, liveness=False, cc=None, jd=None):
-        
+
         graphs = self.make_graphs(func, args)
         #graphs[0].show()
         if transform:
@@ -485,11 +485,11 @@
             ---
             L1:
             goto_if_exception_mismatch $<* struct object_vtable>, L2
-            int_return $-42
+            int_return $42
             ---
             L2:
             goto_if_exception_mismatch $<* struct object_vtable>, L3
-            int_return $42
+            int_return $-42
             ---
             L3:
             reraise
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to