summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-02-04 18:16:08 -0700
committerGitHub <noreply@github.com>2017-02-04 18:16:08 -0700
commitfa8e910bb58194c4d99565f77d91d9c27b720c33 (patch)
tree83ebb651533caec623fa2e3caaaa425fcc1569f4
parenta4eb322a2bb7f015f3366f01879ed64f887379cb (diff)
parent93d1cd65dd3b3c370058219dec3160d958f315be (diff)
downloadnumpy-fa8e910bb58194c4d99565f77d91d9c27b720c33.tar.gz
Merge pull request #8568 from matthew-brett/enable-ppc-eps-tests
TST: re-enable PPC longdouble spacing tests
-rw-r--r--numpy/core/tests/test_umath.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/core/tests/test_umath.py b/numpy/core/tests/test_umath.py
index fa15554b2..436cb0355 100644
--- a/numpy/core/tests/test_umath.py
+++ b/numpy/core/tests/test_umath.py
@@ -2092,8 +2092,8 @@ def test_nextafter():
def test_nextafterf():
return _test_nextafter(np.float32)
-@dec.knownfailureif(sys.platform == 'win32' or on_powerpc(),
- "Long double support buggy on win32 and PPC, ticket 1664.")
+@dec.knownfailureif(sys.platform == 'win32',
+ "Long double support buggy on win32, ticket 1664.")
def test_nextafterl():
return _test_nextafter(np.longdouble)
@@ -2115,8 +2115,8 @@ def test_spacing():
def test_spacingf():
return _test_spacing(np.float32)
-@dec.knownfailureif(sys.platform == 'win32' or on_powerpc(),
- "Long double support buggy on win32 and PPC, ticket 1664.")
+@dec.knownfailureif(sys.platform == 'win32',
+ "Long double support buggy on win32, ticket 1664.")
def test_spacingl():
return _test_spacing(np.longdouble)