[pypy-svn] r78090 - pypy/trunk/lib-python

arigo at codespeak.net arigo at codespeak.net
Tue Oct 19 17:30:10 CEST 2010


Author: arigo
Date: Tue Oct 19 17:30:08 2010
New Revision: 78090

Modified:
   pypy/trunk/lib-python/conftest.py
Log:
Revert r76359, and skip ctypes tests again.
The comment (re-appearing because of the revert) explains why.
I'm not sure I understand why it was un-skipped but nothing
at all was done to fix the massive number of failures.


Modified: pypy/trunk/lib-python/conftest.py
==============================================================================
--- pypy/trunk/lib-python/conftest.py	(original)
+++ pypy/trunk/lib-python/conftest.py	Tue Oct 19 17:30:08 2010
@@ -464,7 +464,12 @@
     RegrTest('test_coding.py'),
     RegrTest('test_complex_args.py'),
     RegrTest('test_contextlib.py', usemodules="thread"),
-    RegrTest('test_ctypes.py', usemodules="_rawffi"),
+    # we skip test ctypes, since we adapted it massively in order
+    # to test what we want to support. There are real failures,
+    # but it's about missing features that we don't want to support
+    # now
+    RegrTest('test_ctypes.py', usemodules="_rawffi",
+             skip="missing features that we don't want to support now"),
     RegrTest('test_defaultdict.py'),
     RegrTest('test_email_renamed.py'),
     RegrTest('test_exception_variations.py'),



More information about the Pypy-commit mailing list