[pypy-svn] r51887 - pypy/branch/jit-refactoring/pypy/jit/rainbow/test

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Feb 26 23:51:12 CET 2008


Author: cfbolz
Date: Tue Feb 26 23:51:10 2008
New Revision: 51887

Modified:
   pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_portal.py
   pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_promotion.py
Log:
more passing tests


Modified: pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_portal.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_portal.py	(original)
+++ pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_portal.py	Tue Feb 26 23:51:10 2008
@@ -180,7 +180,6 @@
         assert not res
 
     def test_dfa_compile3(self):
-        py.test.skip("not working yet")
         from pypy.lang.automata.dfa import getautomaton, recognize3
         def main(gets):
             auto = getautomaton()

Modified: pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_promotion.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_promotion.py	(original)
+++ pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_promotion.py	Tue Feb 26 23:51:10 2008
@@ -306,7 +306,6 @@
         assert res == 22
 
     def test_raise_result_mixup(self):
-        py.test.skip("residual calls not supported")
         def w(x):
             pass
         class E(Exception):
@@ -341,7 +340,6 @@
         res == 1
 
     def test_raise_result_mixup_some_more(self):
-        py.test.skip("residual calls not supported")
         def w(x):
             if x > 1000:
                 return None



More information about the Pypy-commit mailing list