summaryrefslogtreecommitdiff
path: root/Lib/ctypes/test/test_byteswap.py
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2006-03-09 09:43:53 +0000
committerThomas Heller <theller@ctypes.org>2006-03-09 09:43:53 +0000
commit9f4ef861897abf6fa8c9137a2f74a49121807796 (patch)
tree0fb95de3677fc4849d706b1e097a2102b1ec7af0 /Lib/ctypes/test/test_byteswap.py
parentf23ee95c7b662dec71ed7fd527854a7f832e3603 (diff)
downloadcpython-9f4ef861897abf6fa8c9137a2f74a49121807796.tar.gz
Disable the testcase that crashes solaris.
Diffstat (limited to 'Lib/ctypes/test/test_byteswap.py')
-rw-r--r--Lib/ctypes/test/test_byteswap.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_byteswap.py b/Lib/ctypes/test/test_byteswap.py
index 166a5b7f65..1b31f90229 100644
--- a/Lib/ctypes/test/test_byteswap.py
+++ b/Lib/ctypes/test/test_byteswap.py
@@ -198,7 +198,8 @@ class Test(unittest.TestCase):
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"