[pypy-svn] r34092 - pypy/dist/pypy/jit/codegen/llvm/test

ericvrp at codespeak.net ericvrp at codespeak.net
Fri Nov 3 12:17:54 CET 2006


Author: ericvrp
Date: Fri Nov  3 12:17:51 2006
New Revision: 34092

Modified:
   pypy/dist/pypy/jit/codegen/llvm/test/test_llvmjit.py
Log:
proper skip on darwin for the llvmjit codegen translation test 


Modified: pypy/dist/pypy/jit/codegen/llvm/test/test_llvmjit.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/llvm/test/test_llvmjit.py	(original)
+++ pypy/dist/pypy/jit/codegen/llvm/test/test_llvmjit.py	Fri Nov  3 12:17:51 2006
@@ -1,4 +1,5 @@
 import py
+from sys import platform
 from os.path import dirname, join
 from pypy.translator.c.test.test_genc import compile
 
@@ -99,6 +100,9 @@
     pass
     
 def test_execute_translation(): #put this one last because it takes the most time
+    if platform == 'darwin':
+        py.test.skip('dynamic vs. static library issue. see: http://www.cocoadev.com/index.pl?ApplicationLinkingIssues for more information (needs to be fixed)')
+
     llvmjit.restart()
     def f(x):
         return execute(llsquare, 'square', x + 5)



More information about the Pypy-commit mailing list