diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py index eac5a1c765b6df..b678420e9cf1f9 100644 --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -2743,7 +2743,7 @@ 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") def test_fma_zero_result(self): nonnegative_finites = [0.0, 1e-300, 2.3, 1e300]