From 3747ab5ec181368dcfa57a5436e40e0ec1927641 Mon Sep 17 00:00:00 2001 From: Pauli Virtanen Date: Wed, 20 Oct 2010 00:07:26 +0200 Subject: TST: core: mark test_ldexp_overflow as known failure on Python < 2.6 on Windows, because of apparently broken C runtime in the python.org binaries --- numpy/core/tests/test_umath.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'numpy') diff --git a/numpy/core/tests/test_umath.py b/numpy/core/tests/test_umath.py index 1245030a4..3f2601150 100644 --- a/numpy/core/tests/test_umath.py +++ b/numpy/core/tests/test_umath.py @@ -397,6 +397,9 @@ class TestLdexp(TestCase): self._check_ldexp('i') self._check_ldexp('l') + @dec.knownfailureif(sys.platform == 'win32' and sys.version_info < (2, 6), + "python.org < 2.6 binaries have broken ldexp in the " + "C runtime") def test_ldexp_overflow(self): imax = np.iinfo(np.dtype('l')).max imin = np.iinfo(np.dtype('l')).min -- cgit v1.2.1