From 451099ea77242552b62a568ba9a18511803174cd Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Fri, 11 Aug 2023 21:45:24 +0200 Subject: [PATCH] TST: revert xfail in `test_umath.py` This xfail was added in gh-24279 for 32-bit Python + MSVC when switching to Meson and having temporarily no SIMD support. That is back now, so this test passes again. [skip circle] [skip cirrus] [skip travis] --- numpy/core/tests/test_umath.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/numpy/core/tests/test_umath.py b/numpy/core/tests/test_umath.py index 0e07a6cb937b..6951d41e43d4 100644 --- a/numpy/core/tests/test_umath.py +++ b/numpy/core/tests/test_umath.py @@ -1764,8 +1764,6 @@ def test_expm1(self): np.log, np.log2, np.log10, np.reciprocal, np.arccosh ] - @pytest.mark.skipif(sys.platform == "win32" and sys.maxsize < 2**31 + 1, - reason='failures on 32-bit Python, see FIXME below') @pytest.mark.parametrize("ufunc", UFUNCS_UNARY_FP) @pytest.mark.parametrize("dtype", ('e', 'f', 'd')) @pytest.mark.parametrize("data, escape", ( @@ -1812,8 +1810,6 @@ def test_unary_spurious_fpexception(self, ufunc, dtype, data, escape): # FIXME: NAN raises FP invalid exception: # - ceil/float16 on MSVC:32-bit # - spacing/float16 on almost all platforms - # FIXME: skipped on MSVC:32-bit during switch to Meson, 10 cases fail - # when SIMD support not present / disabled if ufunc in (np.spacing, np.ceil) and dtype == 'e': return array = np.array(data, dtype=dtype)