[pypy-svn] r65270 - in pypy/branch/pyjitpl5/pypy/jit/backend/cli: . test

antocuni at codespeak.net antocuni at codespeak.net
Fri May 15 15:24:12 CEST 2009


Author: antocuni
Date: Fri May 15 15:24:11 2009
New Revision: 65270

Modified:
   pypy/branch/pyjitpl5/pypy/jit/backend/cli/runner.py
   pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_basic.py
   pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_runner.py
Log:
fix or skip the recently added tests


Modified: pypy/branch/pyjitpl5/pypy/jit/backend/cli/runner.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/cli/runner.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/cli/runner.py	Fri May 15 15:24:11 2009
@@ -18,7 +18,7 @@
     is_oo = True
 
     def __init__(self, rtyper, stats, translate_support_code=False,
-                 mixlevelann=None):
+                 mixlevelann=None, gcdescr=None):
         self.rtyper = rtyper
         if rtyper:
             assert rtyper.type_system.name == "ootypesystem"

Modified: pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_basic.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_basic.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_basic.py	Fri May 15 15:24:11 2009
@@ -29,11 +29,14 @@
     test_print = skip
     test_bridge_from_interpreter_2 = skip
     test_bridge_from_interpreter_3 = skip
+    test_bridge_leaving_interpreter_5 = skip
     test_instantiate_classes = skip
     test_zerodivisionerror = skip
     test_isinstance = skip
     test_oois = skip
     test_oostring_instance = skip
+    test_long_long = skip
+    test_free_object = skip
     
     test_stopatxpolicy = _skip
     test_bridge_from_interpreter = _skip

Modified: pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_runner.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_runner.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_runner.py	Fri May 15 15:24:11 2009
@@ -27,4 +27,5 @@
     test_failing_guard_class = skip      # GUARD_CLASS
 
     def test_ovf_operations(self, reversed=False):
-        py.test.skip('fixme')
+        if reversed:
+            py.test.skip('fixme')



More information about the Pypy-commit mailing list