[pypy-commit] pypy default: move a lot of tests into the base class: I suppose they were put in the lltype specific one by mistake

antocuni noreply at buildbot.pypy.org
Mon Jun 27 18:15:33 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r45139:799e295b68bd
Date: 2011-06-15 09:50 +0200
http://bitbucket.org/pypy/pypy/changeset/799e295b68bd/

Log:	move a lot of tests into the base class: I suppose they were put in
	the lltype specific one by mistake

diff --git a/pypy/jit/metainterp/optimizeopt/test/test_optimizeopt.py b/pypy/jit/metainterp/optimizeopt/test/test_optimizeopt.py
--- a/pypy/jit/metainterp/optimizeopt/test/test_optimizeopt.py
+++ b/pypy/jit/metainterp/optimizeopt/test/test_optimizeopt.py
@@ -2741,8 +2741,6 @@
 
     # ----------
 
-class TestLLtype(OptimizeOptTest, LLtypeMixin):
-
     def test_residual_call_does_not_invalidate_caches(self):
         ops = """
         [p1, p2]
@@ -5837,3 +5835,6 @@
         jump(i3, i4)
         """
         self.optimize_loop(ops, expected)
+
+class TestLLtype(OptimizeOptTest, LLtypeMixin):
+    pass


More information about the pypy-commit mailing list