[pypy-svn] r64977 - pypy/branch/pyjitpl5/pypy/jit/backend/minimal/test

antocuni at codespeak.net antocuni at codespeak.net
Sat May 2 17:43:37 CEST 2009


Author: antocuni
Date: Sat May  2 17:43:37 2009
New Revision: 64977

Added:
   pypy/branch/pyjitpl5/pypy/jit/backend/minimal/test/test_zrpy_basic.py   (contents, props changed)
Modified:
   pypy/branch/pyjitpl5/pypy/jit/backend/minimal/test/test_zrpy_tl.py
Log:
more tests for the minimal backend, with a couple of failures also for lltype :-/
(didn't investigate so far)



Added: pypy/branch/pyjitpl5/pypy/jit/backend/minimal/test/test_zrpy_basic.py
==============================================================================
--- (empty file)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/minimal/test/test_zrpy_basic.py	Sat May  2 17:43:37 2009
@@ -0,0 +1,22 @@
+import py
+from pypy.jit.metainterp.test.test_basic import BasicTests
+from pypy.jit.backend.minimal.test.test_zrpy_exception import LLTranslatedJitMixin, OOTranslatedJitMixin
+
+class TestOOtype(OOTranslatedJitMixin, BasicTests):
+    def skip(self):
+        py.test.skip('in-progress')
+
+    test_stopatxpolicy = skip
+    test_print = skip
+    test_bridge_from_interpreter = skip
+    test_bridge_from_interpreter_2 = skip
+
+
+class TestLLtype(LLTranslatedJitMixin, BasicTests):
+    def skip(self):
+        py.test.skip('in-progress')
+
+    test_print = skip
+    test_bridge_from_interpreter = skip
+    test_bridge_from_interpreter_2 = skip
+

Modified: pypy/branch/pyjitpl5/pypy/jit/backend/minimal/test/test_zrpy_tl.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/minimal/test/test_zrpy_tl.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/minimal/test/test_zrpy_tl.py	Sat May  2 17:43:37 2009
@@ -3,9 +3,6 @@
 from pypy.jit.backend.minimal.test.test_zrpy_exception import LLTranslatedJitMixin, OOTranslatedJitMixin
 
 class TestOOtype(OOTranslatedJitMixin, ToyLanguageTests):
-
-    def skip(self):
-        py.test.skip('in-progress')
     
     def test_tl_base(self):
         # XXX: remove this hack as soon as WarmEnterState is no longer a pbc



More information about the Pypy-commit mailing list