Skip to content

Commit dde8805

Browse files
[3.13] gh-125150: Skip test_fma_zero_result on NetBSD due to IEE 754-2008 implementation issues (GH-125151) (#125173)
gh-125150: Skip test_fma_zero_result on NetBSD due to IEE 754-2008 implementation issues (GH-125151) Skip test_fma_zero_result on NetBSD due to IEE 754-2008 implementation issues (cherry picked from commit 92760bd) Co-authored-by: Furkan Onder <[email protected]>
1 parent 5f2a5ac commit dde8805

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_math.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2706,7 +2706,7 @@ def test_fma_infinities(self):
27062706
# gh-73468: On some platforms, libc fma() doesn't implement IEE 754-2008
27072707
# properly: it doesn't use the right sign when the result is zero.
27082708
@unittest.skipIf(
2709-
sys.platform.startswith(("freebsd", "wasi"))
2709+
sys.platform.startswith(("freebsd", "wasi", "netbsd"))
27102710
or (sys.platform == "android" and platform.machine() == "x86_64"),
27112711
f"this platform doesn't implement IEE 754-2008 properly")
27122712
def test_fma_zero_result(self):

0 commit comments

Comments
 (0)