[pypy-commit] pypy default: We decided to not explicitly support the whole ctypes-2.7

arigo noreply at buildbot.pypy.org
Wed Dec 14 14:52:09 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r50502:29823c2fcce6
Date: 2011-12-14 14:51 +0100
http://bitbucket.org/pypy/pypy/changeset/29823c2fcce6/

Log:	We decided to not explicitly support the whole ctypes-2.7 and
	instead go for a case-by-case, demand-driven approach. So this test
	is skipped instead of failing.

diff --git a/lib-python/modified-2.7/ctypes/test/test_libc.py b/lib-python/modified-2.7/ctypes/test/test_libc.py
--- a/lib-python/modified-2.7/ctypes/test/test_libc.py
+++ b/lib-python/modified-2.7/ctypes/test/test_libc.py
@@ -25,7 +25,10 @@
         lib.my_qsort(chars, len(chars)-1, sizeof(c_char), comparefunc(sort))
         self.assertEqual(chars.raw, "   ,,aaaadmmmnpppsss\x00")
 
-    def test_no_more_xfail(self):
+    def SKIPPED_test_no_more_xfail(self):
+        # We decided to not explicitly support the whole ctypes-2.7
+        # and instead go for a case-by-case, demand-driven approach.
+        # So this test is skipped instead of failing.
         import socket
         import ctypes.test
         self.assertTrue(not hasattr(ctypes.test, 'xfail'),


More information about the pypy-commit mailing list