[pypy-commit] pypy emit-call-x86: just skip this test on top of the llgraph backend

arigo noreply at buildbot.pypy.org
Sun May 19 22:15:04 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: emit-call-x86
Changeset: r64347:ae2989f5a6bc
Date: 2013-05-19 22:01 +0200
http://bitbucket.org/pypy/pypy/changeset/ae2989f5a6bc/

Log:	just skip this test on top of the llgraph backend

diff --git a/rpython/jit/backend/llgraph/test/test_llgraph.py b/rpython/jit/backend/llgraph/test/test_llgraph.py
--- a/rpython/jit/backend/llgraph/test/test_llgraph.py
+++ b/rpython/jit/backend/llgraph/test/test_llgraph.py
@@ -15,6 +15,9 @@
     def test_memoryerror(self):
         py.test.skip("does not make much sense on the llgraph backend")
 
+    def test_call_release_gil_variable_function_and_arguments(self):
+        py.test.skip("the arguments seem not correctly casted")
+
 
 def test_cast_adr_to_int_and_back():
     X = lltype.Struct('X', ('foo', lltype.Signed))


More information about the pypy-commit mailing list