[pypy-svn] r32968 - pypy/dist/pypy/jit/timeshifter/test

pedronis at codespeak.net pedronis at codespeak.net
Fri Oct 6 18:00:10 CEST 2006


Author: pedronis
Date: Fri Oct  6 18:00:06 2006
New Revision: 32968

Modified:
   pypy/dist/pypy/jit/timeshifter/test/test_promotion.py
Log:
(arre, pedronis)

this test now passes, whatever that means.



Modified: pypy/dist/pypy/jit/timeshifter/test/test_promotion.py
==============================================================================
--- pypy/dist/pypy/jit/timeshifter/test/test_promotion.py	(original)
+++ pypy/dist/pypy/jit/timeshifter/test/test_promotion.py	Fri Oct  6 18:00:06 2006
@@ -170,10 +170,9 @@
         self.check_insns(int_add=0, int_mul=0)
 
     def test_more_promotes(self):
-        py.test.skip("in-progress")
         S = lltype.GcStruct('S', ('x', lltype.Signed), ('y', lltype.Signed))
         def ll_two(s, i, m):
-            if i < 4:
+            if i > 4:
                 s.x += i
                 return 10
             else:



More information about the Pypy-commit mailing list