[pypy-svn] r50476 - pypy/branch/applevel-ctypes2/pypy/lib/app_test/ctypes

fijal at codespeak.net fijal at codespeak.net
Wed Jan 9 23:55:13 CET 2008


Author: fijal
Date: Wed Jan  9 23:55:13 2008
New Revision: 50476

Modified:
   pypy/branch/applevel-ctypes2/pypy/lib/app_test/ctypes/test_pointers.py
Log:
One skip and one junk


Modified: pypy/branch/applevel-ctypes2/pypy/lib/app_test/ctypes/test_pointers.py
==============================================================================
--- pypy/branch/applevel-ctypes2/pypy/lib/app_test/ctypes/test_pointers.py	(original)
+++ pypy/branch/applevel-ctypes2/pypy/lib/app_test/ctypes/test_pointers.py	Wed Jan  9 23:55:13 2008
@@ -61,6 +61,7 @@
         assert i.value == 54345
 
     def test_callbacks_with_pointers(self):
+        py.test.skip("callbacks not supported")
         # a function type receiving a pointer
         PROTOTYPE = CFUNCTYPE(c_int, POINTER(c_int))
 
@@ -173,6 +174,3 @@
 
         py.test.raises(TypeError, c_void_p, 3.14) # make sure floats are NOT accepted
         py.test.raises(TypeError, c_void_p, object()) # nor other objects
-
-if __name__ == '__main__':
-    unittest.main()



More information about the Pypy-commit mailing list