[pypy-svn] r66986 - pypy/branch/pyjitpl5/pypy/jit/metainterp/test

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Aug 19 17:37:20 CEST 2009


Author: cfbolz
Date: Wed Aug 19 17:37:19 2009
New Revision: 66986

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_del.py
Log:
(mikke, cfbolz): signals don't work on .NET anyway


Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_del.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_del.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_del.py	Wed Aug 19 17:37:19 2009
@@ -27,6 +27,8 @@
                           'guard_true': 1,
                           'jump': 1})
 
+
+class TestLLtype(DelTests, LLJitMixin):
     def test_signal_action(self):
         from pypy.module.signal.interp_signal import SignalActionFlag
         action = SignalActionFlag()
@@ -49,11 +51,7 @@
         self.meta_interp(f, [20])
         self.check_loops(getfield_raw=1, call=0, call_pure=0)
 
-
-class TestLLtype(DelTests, LLJitMixin):
-    pass
-
 class TestOOtype(DelTests, OOJitMixin):
-    def setup_class(cls):
+    def test_del_keep_obj(self):
         py.test.skip("XXX dels are not implemented in the"
                      " static CLI or JVM backend")



More information about the Pypy-commit mailing list