[Python-checkins] r42936 - python/trunk/Lib/ctypes/test/test_byteswap.py
thomas.heller
python-checkins at python.org
Thu Mar 9 10:43:54 CET 2006
Author: thomas.heller
Date: Thu Mar 9 10:43:53 2006
New Revision: 42936
Modified:
python/trunk/Lib/ctypes/test/test_byteswap.py
Log:
Disable the testcase that crashes solaris.
Modified: python/trunk/Lib/ctypes/test/test_byteswap.py
==============================================================================
--- python/trunk/Lib/ctypes/test/test_byteswap.py (original)
+++ python/trunk/Lib/ctypes/test/test_byteswap.py Thu Mar 9 10:43:53 2006
@@ -198,7 +198,8 @@
pass
self.assertRaises(TypeError, setattr, S, "_fields_", [("s", T)])
- def test_struct_fields(self):
+ # crashes on solaris with a core dump.
+ def X_test_struct_fields(self):
if sys.byteorder == "little":
base = BigEndianStructure
fmt = ">bhid"
More information about the Python-checkins
mailing list