Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions Lib/test/test_math.py
Original file line number Diff line number Diff line change
Expand Up @@ -2682,11 +2682,8 @@ def test_fma_infinities(self):
@unittest.skipIf(
sys.platform.startswith(("freebsd", "wasi", "netbsd", "emscripten", "cygwin"))
or (sys.platform == "android" and platform.machine() == "x86_64")
or support.linked_to_musl(), # gh-131032
or (support.linked_to_musl() and support.linked_to_musl() < (1, 2, 6)), # gh-131032
f"this platform doesn't implement IEE 754-2008 properly")
# gh-131032: musl is fixed but the fix is not yet released; when the fixed
# version is known change this to:
# or support.linked_to_musl() < (1, <m>, <p>)
def test_fma_zero_result(self):
nonnegative_finites = [0.0, 1e-300, 2.3, 1e300]

Expand Down
Loading