[pypy-svn] r57723 - pypy/branch/oo-jit/pypy/jit/codegen/cli/test

antocuni at codespeak.net antocuni at codespeak.net
Mon Sep 1 15:02:57 CEST 2008


Author: antocuni
Date: Mon Sep  1 15:02:53 2008
New Revision: 57723

Modified:
   pypy/branch/oo-jit/pypy/jit/codegen/cli/test/test_gencli_interpreter.py
Log:
skip one test, and unskip a bunch of ones that pass out of the box :-)



Modified: pypy/branch/oo-jit/pypy/jit/codegen/cli/test/test_gencli_interpreter.py
==============================================================================
--- pypy/branch/oo-jit/pypy/jit/codegen/cli/test/test_gencli_interpreter.py	(original)
+++ pypy/branch/oo-jit/pypy/jit/codegen/cli/test/test_gencli_interpreter.py	Mon Sep  1 15:02:53 2008
@@ -77,11 +77,9 @@
         res = self.interpret(ll_function, [], [])
         assert res.class_name == 'S'
 
-    test_arith_plus_minus = skip
-    test_plus_minus = skip
-    test_red_virtual_container = skip
-    test_red_propagate = skip
-    test_merge_structures = skip
+    def test_arith_plus_minus(self):
+        py.test.skip("Cannot work unless we add support for constant arguments in compiled tests")
+
     test_green_with_side_effects = skip
     test_compile_time_const_tuple = skip
     test_green_deepfrozen_oosend = skip



More information about the Pypy-commit mailing list