diff options
author | David Cournapeau <cournape@gmail.com> | 2009-11-23 09:27:26 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-11-23 09:27:26 +0000 |
commit | 734123bc38f62da38dceeb251e355ec3f720454a (patch) | |
tree | 467a4df7552b49ab3e67c477c6863fde402d07f7 | |
parent | 3dd44428ecba23e1ee0521e1e0a2d2a23fa72a8e (diff) | |
download | numpy-734123bc38f62da38dceeb251e355ec3f720454a.tar.gz |
TST: mark spacing/nextafter long double versions tests as known failures on win32.
-rw-r--r-- | numpy/core/tests/test_umath.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/core/tests/test_umath.py b/numpy/core/tests/test_umath.py index 890e36917..9d2fe1174 100644 --- a/numpy/core/tests/test_umath.py +++ b/numpy/core/tests/test_umath.py @@ -1,3 +1,5 @@ +import sys + from numpy.testing import * import numpy.core.umath as ncu import numpy as np @@ -859,6 +861,7 @@ def test_nextafter(): def test_nextafterf(): return _test_nextafter(np.float32) +@dec.knownfailureif(sys.platform == 'win32', "Long double support buggy on win32") def test_nextafterl(): return _test_nextafter(np.longdouble) @@ -878,6 +881,7 @@ def test_spacing(): def test_spacingf(): return _test_spacing(np.float32) +@dec.knownfailureif(sys.platform == 'win32', "Long double support buggy on win32") def test_spacingl(): return _test_spacing(np.longdouble) |