[pypy-svn] r78623 - in pypy/branch/jit-unroll-loops/pypy/jit: backend/x86/test metainterp/test

arigo at codespeak.net arigo at codespeak.net
Sun Oct 31 16:02:35 CET 2010


Author: arigo
Date: Sun Oct 31 16:02:33 2010
New Revision: 78623

Added:
   pypy/branch/jit-unroll-loops/pypy/jit/backend/x86/test/test_loop_unroll.py
      - copied, changed from r78619, pypy/branch/jit-unroll-loops/pypy/jit/backend/x86/test/test_loop_spec.py
Removed:
   pypy/branch/jit-unroll-loops/pypy/jit/backend/x86/test/test_loop_spec.py
Modified:
   pypy/branch/jit-unroll-loops/pypy/jit/metainterp/test/test_loop_unroll.py
Log:
Rename.


Copied: pypy/branch/jit-unroll-loops/pypy/jit/backend/x86/test/test_loop_unroll.py (from r78619, pypy/branch/jit-unroll-loops/pypy/jit/backend/x86/test/test_loop_spec.py)
==============================================================================
--- pypy/branch/jit-unroll-loops/pypy/jit/backend/x86/test/test_loop_spec.py	(original)
+++ pypy/branch/jit-unroll-loops/pypy/jit/backend/x86/test/test_loop_unroll.py	Sun Oct 31 16:02:33 2010
@@ -1,8 +1,8 @@
 import py
 from pypy.jit.backend.x86.test.test_basic import Jit386Mixin
-from pypy.jit.metainterp.test import test_loop_spec
+from pypy.jit.metainterp.test import test_loop_unroll
 
-class TestLoopSpec(Jit386Mixin, test_loop_spec.LoopSpecTest):
+class TestLoopSpec(Jit386Mixin, test_loop_unroll.LoopUnrollTest):
     # for the individual tests see
     # ====> ../../../metainterp/test/test_loop.py
     pass

Modified: pypy/branch/jit-unroll-loops/pypy/jit/metainterp/test/test_loop_unroll.py
==============================================================================
--- pypy/branch/jit-unroll-loops/pypy/jit/metainterp/test/test_loop_unroll.py	(original)
+++ pypy/branch/jit-unroll-loops/pypy/jit/metainterp/test/test_loop_unroll.py	Sun Oct 31 16:02:33 2010
@@ -3,7 +3,7 @@
 from pypy.jit.metainterp.test import test_loop
 from pypy.jit.metainterp.test.test_basic import LLJitMixin, OOJitMixin
 
-class LoopSpecTest(test_loop.LoopTest):
+class LoopUnrollTest(test_loop.LoopTest):
     optimizer = OPTIMIZER_FULL
     automatic_promotion_result = {
         'int_add' : 3, 'int_gt' : 1, 'guard_false' : 1, 'jump' : 1, 
@@ -11,8 +11,8 @@
 
     # ====> test_loop.py
 
-class TestLLtype(LoopSpecTest, LLJitMixin):
+class TestLLtype(LoopUnrollTest, LLJitMixin):
     pass
 
-class TestOOtype(LoopSpecTest, OOJitMixin):
+class TestOOtype(LoopUnrollTest, OOJitMixin):
     pass



More information about the Pypy-commit mailing list