From 1c57033b2b4990210ccb884cc52f3966c4792832 Mon Sep 17 00:00:00 2001 From: Xiaowei Lu Date: Fri, 14 Aug 2026 03:46:54 +0800 Subject: [PATCH] gh-152563, test_math: Enable fma test on musl 1.2.6 (GH-152564) (cherry picked from commit 5ea393501e308586a689acab6d78ff74b365045b) Co-authored-by: Xiaowei Lu --- Lib/test/test_math.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py index fd7d1a1c61cfd7..64a86a29b5797e 100644 --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -2804,11 +2804,8 @@ def test_fma_infinities(self): @unittest.skipIf( sys.platform.startswith(("freebsd", "wasi", "netbsd", "emscripten")) 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, ,

) def test_fma_zero_result(self): nonnegative_finites = [0.0, 1e-300, 2.3, 1e300]