diff options
author | Fedora Python maintainers <python-devel@lists.fedoraproject.org> | 2020-07-15 15:24:44 +0200 |
---|---|---|
committer | Petr Viktorin <pviktori@redhat.com> | 2020-09-29 15:59:05 +0200 |
commit | ca05230dedf2f2947cf3ae86472fdd418291adc4 (patch) | |
tree | ab335dc474fff4eb8cddd18bca0f8493c208acde | |
parent | 68c9a4cbd1bc05d638db50fa19fa01f9281367b2 (diff) | |
download | cpython-git-ca05230dedf2f2947cf3ae86472fdd418291adc4.tar.gz |
00140-skip-test_ctypes-known-failure-on-sparc.patch
00140 #
Sparc-specific: skip known failure in test_ctypes:
http://bugs.python.org/issue8314 (rhbz#711584)
which appears to be a libffi bug
-rw-r--r-- | Lib/ctypes/test/test_callbacks.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/ctypes/test/test_callbacks.py b/Lib/ctypes/test/test_callbacks.py index db3d9e7b19..c5a997b308 100644 --- a/Lib/ctypes/test/test_callbacks.py +++ b/Lib/ctypes/test/test_callbacks.py @@ -69,6 +69,7 @@ class Callbacks(unittest.TestCase): self.check_type(c_longlong, 42) self.check_type(c_longlong, -42) + @unittest.skip('Known failure on Sparc: http://bugs.python.org/issue8314') def test_ulonglong(self): # test some 64-bit values, with and without msb set. self.check_type(c_ulonglong, 10955412242170339782) |