[pypy-svn] r78921 - pypy/branch/fast-forward/pypy/module/test_lib_pypy/ctypes_tests

afa at codespeak.net afa at codespeak.net
Tue Nov 9 15:04:33 CET 2010


Author: afa
Date: Tue Nov  9 15:04:32 2010
New Revision: 78921

Modified:
   pypy/branch/fast-forward/pypy/module/test_lib_pypy/ctypes_tests/test_struct_fields.py
Log:
These tests pass now...


Modified: pypy/branch/fast-forward/pypy/module/test_lib_pypy/ctypes_tests/test_struct_fields.py
==============================================================================
--- pypy/branch/fast-forward/pypy/module/test_lib_pypy/ctypes_tests/test_struct_fields.py	(original)
+++ pypy/branch/fast-forward/pypy/module/test_lib_pypy/ctypes_tests/test_struct_fields.py	Tue Nov  9 15:04:32 2010
@@ -26,14 +26,12 @@
         raises(AttributeError, setattr, X, "_fields_", [])
 
     def test_2(self):
-        py.test.skip("absent _fields_ semantics not implemented")
         class X(Structure):
             pass
         X()
         raises(AttributeError, setattr, X, "_fields_", [])
 
     def test_3(self):
-        py.test.skip("subclassing semantics not implemented")
         class X(Structure):
             pass
         class Y(Structure):
@@ -41,7 +39,6 @@
         raises(AttributeError, setattr, X, "_fields_", [])
 
     def test_4(self):
-        py.test.skip("subclassing semantics not implemented")
         class X(Structure):
             pass
         class Y(X):



More information about the Pypy-commit mailing list