https://github.com/python/cpython/commit/92760bd85b8f48b88df5b81100a757048979de83
commit: 92760bd85b8f48b88df5b81100a757048979de83
branch: main
author: Furkan Onder <[email protected]>
committer: vstinner <[email protected]>
date: 2024-10-09T10:40:06+02:00
summary:

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

files:
M Lib/test/test_math.py

diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py
index a3eebc97ada23b..e2e2a419c7778c 100644
--- a/Lib/test/test_math.py
+++ b/Lib/test/test_math.py
@@ -2722,7 +2722,7 @@ def test_fma_infinities(self):
     # gh-73468: On some platforms, libc fma() doesn't implement IEE 754-2008
     # properly: it doesn't use the right sign when the result is zero.
     @unittest.skipIf(
-        sys.platform.startswith(("freebsd", "wasi"))
+        sys.platform.startswith(("freebsd", "wasi", "netbsd"))
         or (sys.platform == "android" and platform.machine() == "x86_64"),
         f"this platform doesn't implement IEE 754-2008 properly")
     def test_fma_zero_result(self):

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to