File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2691,10 +2691,12 @@ def test_fma_infinities(self):
26912691 self .assertEqual (math .fma (- b , - math .inf , c ), math .inf )
26922692 self .assertEqual (math .fma (- b , math .inf , c ), - math .inf )
26932693
2694- # gh-73468: WASI libc fma() doesn't implement IEE 754-2008 properly:
2695- # it doesn't use the right sign when the result is zero.
2694+ # gh-73468: On WASI and FreeBSD, libc fma() doesn't implement IEE 754-2008
2695+ # properly: it doesn't use the right sign when the result is zero.
26962696 @unittest .skipIf (support .is_wasi ,
2697- "WASI libc fma() doesn't implement IEE 754-2008 properly" )
2697+ "WASI fma() doesn't implement IEE 754-2008 properly" )
2698+ @unittest .skipIf (sys .platform .startswith ('freebsd' ),
2699+ "FreeBSD fma() doesn't implement IEE 754-2008 properly" )
26982700 def test_fma_zero_result (self ):
26992701 nonnegative_finites = [0.0 , 1e-300 , 2.3 , 1e300 ]
27002702
You can’t perform that action at this time.
0 commit comments