diff options
author | Thomas Heller <theller@ctypes.org> | 2006-03-09 09:43:53 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2006-03-09 09:43:53 (GMT) |
commit | 57e881eb2262bbcfe4f537ba19ae45a8fff0bf4b (patch) | |
tree | 2c39497792f57353f0574f39e13f2d88696968f1 /Lib/ctypes | |
parent | e317d0e30724eb61ce66e268d6dca9a37f033f20 (diff) | |
download | cpython-57e881eb2262bbcfe4f537ba19ae45a8fff0bf4b.zip cpython-57e881eb2262bbcfe4f537ba19ae45a8fff0bf4b.tar.gz cpython-57e881eb2262bbcfe4f537ba19ae45a8fff0bf4b.tar.bz2 |
Disable the testcase that crashes solaris.
Diffstat (limited to 'Lib/ctypes')
-rw-r--r-- | Lib/ctypes/test/test_byteswap.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_byteswap.py b/Lib/ctypes/test/test_byteswap.py index 166a5b7..1b31f90 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" |