[pypy-svn] r78652 - pypy/branch/fast-forward/lib-python

afa at codespeak.net afa at codespeak.net
Tue Nov 2 22:26:32 CET 2010


Author: afa
Date: Tue Nov  2 22:26:30 2010
New Revision: 78652

Modified:
   pypy/branch/fast-forward/lib-python/conftest.py
Log:
Restore standard test_ctypes in this branch:
- our own tests are obviously incomplete (nothing for c_longdouble)
- pypy is mature enough to try to be fully compatible with cpython
- we are in a branch anyway


Modified: pypy/branch/fast-forward/lib-python/conftest.py
==============================================================================
--- pypy/branch/fast-forward/lib-python/conftest.py	(original)
+++ pypy/branch/fast-forward/lib-python/conftest.py	Tue Nov  2 22:26:30 2010
@@ -496,12 +496,7 @@
     RegrTest('test_coding.py'),
     RegrTest('test_complex_args.py'),
     RegrTest('test_contextlib.py', usemodules="thread"),
-    # 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_ctypes.py', usemodules="_rawffi")
     RegrTest('test_defaultdict.py'),
     RegrTest('test_email_renamed.py'),
     RegrTest('test_exception_variations.py'),



More information about the Pypy-commit mailing list