[pypy-svn] r62341 - pypy/branch/pyjitpl5/pypy/jit/backend/x86/test

arigo at codespeak.net arigo at codespeak.net
Mon Mar 2 12:07:50 CET 2009


Author: arigo
Date: Mon Mar  2 12:07:46 2009
New Revision: 62341

Added:
   pypy/branch/pyjitpl5/pypy/jit/backend/x86/test/test_zrpy_exception.py   (contents, props changed)
Log:
Port test_zrpy_exception to the x86 backend.


Added: pypy/branch/pyjitpl5/pypy/jit/backend/x86/test/test_zrpy_exception.py
==============================================================================
--- (empty file)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/x86/test/test_zrpy_exception.py	Mon Mar  2 12:07:46 2009
@@ -0,0 +1,15 @@
+
+import py
+from pypy.jit.metainterp.test import test_zrpy_exception
+from pypy.jit.backend.x86.support import c_meta_interp
+
+class Jit386Mixin(object):
+    @staticmethod
+    def meta_interp(fn, args, **kwds):
+        return c_meta_interp(fn, args, **kwds)
+
+class TestException(Jit386Mixin, test_zrpy_exception.TestLLExceptions):
+    # for the individual tests see
+    # ====> ../../../metainterp/test/test_exception.py
+    pass
+



More information about the Pypy-commit mailing list