[pypy-svn] r52870 - pypy/dist/pypy/lib/app_test/ctypes

pedronis at codespeak.net pedronis at codespeak.net
Sun Mar 23 11:52:04 CET 2008


Author: pedronis
Date: Sun Mar 23 11:52:04 2008
New Revision: 52870

Modified:
   pypy/dist/pypy/lib/app_test/ctypes/test_simplesubclasses.py
   pypy/dist/pypy/lib/app_test/ctypes/test_slicing.py
Log:
clarify skips



Modified: pypy/dist/pypy/lib/app_test/ctypes/test_simplesubclasses.py
==============================================================================
--- pypy/dist/pypy/lib/app_test/ctypes/test_simplesubclasses.py	(original)
+++ pypy/dist/pypy/lib/app_test/ctypes/test_simplesubclasses.py	Sun Mar 23 11:52:04 2008
@@ -15,7 +15,7 @@
         assert not MyInt(42) == MyInt(43)
 
     def test_ignore_retval(self):
-        py.test.skip("XXX leaks")
+        py.test.skip("XXX different callback behavior")
         # Test if the return value of a callback is ignored
         # if restype is None
         proto = CFUNCTYPE(None)
@@ -27,7 +27,7 @@
 
 
     def test_int_callback(self):
-        py.test.skip("XXX leaks")
+        py.test.skip("XXX different callback behavior")
         args = []
         def func(arg):
             args.append(arg)

Modified: pypy/dist/pypy/lib/app_test/ctypes/test_slicing.py
==============================================================================
--- pypy/dist/pypy/lib/app_test/ctypes/test_slicing.py	(original)
+++ pypy/dist/pypy/lib/app_test/ctypes/test_slicing.py	Sun Mar 23 11:52:04 2008
@@ -21,7 +21,7 @@
         assert a[0:5] == range(5, 10)
 
     def test_setslice_cint(self):
-        py.test.skip("XXX leaks")
+        py.test.skip("XXX bugs")
         a = (c_int * 100)(*xrange(1100, 1200))
         b = range(1100, 1200)
 



More information about the Pypy-commit mailing list