[pypy-svn] pypy default: unskip these tests, they pass

antocuni commits-noreply at bitbucket.org
Tue Mar 15 18:23:37 CET 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r42671:e6ec5f038dec
Date: 2011-03-15 18:22 +0100
http://bitbucket.org/pypy/pypy/changeset/e6ec5f038dec/

Log:	unskip these tests, they pass

diff --git a/pypy/module/pypyjit/test/test_pypy_c.py b/pypy/module/pypyjit/test/test_pypy_c.py
--- a/pypy/module/pypyjit/test/test_pypy_c.py
+++ b/pypy/module/pypyjit/test/test_pypy_c.py
@@ -636,7 +636,6 @@
             ]
 
     def test_exception_inside_loop_1(self):
-        py.test.skip("exceptions: in-progress")
         self.run_source('''
             def main(n):
                 while n:
@@ -646,7 +645,7 @@
                         pass
                     n -= 1
                 return n
-        ''',
+        ''', 33,
                   ([30], 0))
 
         bytecode, = self.get_by_bytecode("SETUP_EXCEPT")
@@ -658,7 +657,6 @@
         assert not bytecode.get_opnames()
 
     def test_exception_inside_loop_2(self):
-        py.test.skip("exceptions: in-progress")
         self.run_source('''
             def g(n):
                 raise ValueError(n)
@@ -672,7 +670,7 @@
                         pass
                     n -= 1
                 return n
-        ''',
+        ''', 51,
                   ([30], 0))
 
         bytecode, = self.get_by_bytecode("RAISE_VARARGS")


More information about the Pypy-commit mailing list