[pypy-svn] r72951 - pypy/branch/fix-win/pypy/lib/app_test/ctypes_tests

arigo at codespeak.net arigo at codespeak.net
Sat Mar 27 14:07:16 CET 2010


Author: arigo
Date: Sat Mar 27 14:07:14 2010
New Revision: 72951

Modified:
   pypy/branch/fix-win/pypy/lib/app_test/ctypes_tests/test_funcptr.py
Log:
Skip this test for now.  Fails on Windows when
run on pypy-c -A.


Modified: pypy/branch/fix-win/pypy/lib/app_test/ctypes_tests/test_funcptr.py
==============================================================================
--- pypy/branch/fix-win/pypy/lib/app_test/ctypes_tests/test_funcptr.py	(original)
+++ pypy/branch/fix-win/pypy/lib/app_test/ctypes_tests/test_funcptr.py	Sat Mar 27 14:07:14 2010
@@ -131,6 +131,8 @@
         assert strtok(None, "\n") == None
 
     def test_from_address(self):
+        py.test.skip("This test needs mmap to make sure the"
+                     " code is executable, please rewrite me")
         def make_function():
             proto = CFUNCTYPE(c_int)
             a=create_string_buffer(



More information about the Pypy-commit mailing list