Skip to content

Commit 92760bd

Browse files
authored
gh-125150: Skip test_fma_zero_result on NetBSD due to IEE 754-2008 implementation issues (#125151)
Skip test_fma_zero_result on NetBSD due to IEE 754-2008 implementation issues
1 parent e0c87c6 commit 92760bd

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
@@ -2722,7 +2722,7 @@ def test_fma_infinities(self):
27222722
# gh-73468: On some platforms, libc fma() doesn't implement IEE 754-2008
27232723
# properly: it doesn't use the right sign when the result is zero.
27242724
@unittest.skipIf(
2725-
sys.platform.startswith(("freebsd", "wasi"))
2725+
sys.platform.startswith(("freebsd", "wasi", "netbsd"))
27262726
or (sys.platform == "android" and platform.machine() == "x86_64"),
27272727
f"this platform doesn't implement IEE 754-2008 properly")
27282728
def test_fma_zero_result(self):

0 commit comments

Comments
 (0)