diff options
author | Fedora Python maintainers <python-devel@lists.fedoraproject.org> | 2020-07-15 15:24:27 +0200 |
---|---|---|
committer | Petr Viktorin <pviktori@redhat.com> | 2020-09-29 15:59:05 +0200 |
commit | 68c9a4cbd1bc05d638db50fa19fa01f9281367b2 (patch) | |
tree | d01436156c5cbfe6b7b495a78ae54fe3cefc0f10 | |
parent | 14821565bfbd5d7eb3fac37a7fc1be8eadb35662 (diff) | |
download | cpython-git-68c9a4cbd1bc05d638db50fa19fa01f9281367b2.tar.gz |
00139-skip-test_float-known-failure-on-arm.patch
00139 #
ARM-specific: skip known failure in test_float:
http://bugs.python.org/issue8265 (rhbz#706253)
-rw-r--r-- | Lib/test/test_float.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py index c917c1ea45..a2b8f69ffb 100644 --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -1132,6 +1132,7 @@ class HexFloatTestCase(unittest.TestCase): self.identical(got, expected) + @unittest.skip('Known failure on ARM: http://bugs.python.org/issue8265') def test_from_hex(self): MIN = self.MIN; MAX = self.MAX; |