mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
gh-127146: Resolve some minor problems in Emscripten tests (#127565)
Adjusts some Emscripten test exclusions regarding strftime, fma, and stack depth.
This commit is contained in:
parent
12397a5781
commit
0f91078170
3 changed files with 4 additions and 4 deletions
|
@ -2722,7 +2722,7 @@ class FMATests(unittest.TestCase):
|
|||
# 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", "netbsd"))
|
||||
sys.platform.startswith(("freebsd", "wasi", "netbsd", "emscripten"))
|
||||
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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue