[pypy-svn] r66903 - pypy/branch/pyjitpl5/pypy/jit/backend/test

fijal at codespeak.net fijal at codespeak.net
Tue Aug 18 15:55:44 CEST 2009


Author: fijal
Date: Tue Aug 18 15:55:44 2009
New Revision: 66903

Modified:
   pypy/branch/pyjitpl5/pypy/jit/backend/test/runner_test.py
Log:
(pedronis, fijal, arigo) fix the test


Modified: pypy/branch/pyjitpl5/pypy/jit/backend/test/runner_test.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/test/runner_test.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/test/runner_test.py	Tue Aug 18 15:55:44 2009
@@ -240,7 +240,6 @@
             for x, y, z in testcases:
                 assert not self.cpu.get_exception()
                 assert not self.cpu.get_exc_value()
-                assert not self.cpu.get_overflow_flag()
                 self.cpu.set_future_value_int(0, x)
                 self.cpu.set_future_value_int(1, y)
                 op = self.cpu.execute_operations(loop)
@@ -252,7 +251,6 @@
                     assert self.cpu.get_latest_value_int(0) == z
                 assert not self.cpu.get_exception()
                 assert not self.cpu.get_exc_value()
-                assert not self.cpu.get_overflow_flag()
 
     def test_ovf_operations_reversed(self):
         self.test_ovf_operations(reversed=True)



More information about the Pypy-commit mailing list