summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@googlemail.com>2012-05-19 15:03:53 +0200
committerRalf Gommers <ralf.gommers@googlemail.com>2012-05-19 15:03:53 +0200
commitc43a8f282f66cf86cf30e56ef8efc61264fd6e86 (patch)
treed4fb77bd566543348ef0192aa2e24fdd2b56bbd9
parentb6fac09cc1e9dd52198c1dbc7c7dbbef814316fc (diff)
downloadnumpy-c43a8f282f66cf86cf30e56ef8efc61264fd6e86.tar.gz
TST: mark floating point error tests as unconditional knownfail. See #1755.
-rw-r--r--numpy/core/tests/test_numeric.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/numpy/core/tests/test_numeric.py b/numpy/core/tests/test_numeric.py
index ae830793d..0e1785f0a 100644
--- a/numpy/core/tests/test_numeric.py
+++ b/numpy/core/tests/test_numeric.py
@@ -286,9 +286,7 @@ class TestFloatExceptions(TestCase):
self.assert_raises_fpe(fpeerr, flop, sc1, sc2[()]);
self.assert_raises_fpe(fpeerr, flop, sc1[()], sc2[()]);
- @dec.knownfailureif((sys.platform == "darwin") and
- ("powerpc" in platform.processor()),
- "See ticket 1755")
+ @dec.knownfailureif(True, "See ticket 1755")
def test_floating_exceptions(self):
"""Test basic arithmetic function errors"""
oldsettings = np.seterr(all='raise')
@@ -344,9 +342,7 @@ class TestFloatExceptions(TestCase):
finally:
np.seterr(**oldsettings)
- @dec.knownfailureif(sys.platform.startswith('win') or
- (sys.platform == "darwin" and "powerpc" in platform.processor()),
- "See ticket 1755")
+ @dec.knownfailureif(True, "See ticket 1755")
def test_floating_exceptions_power(self):
"""Test basic arithmetic function errors"""
oldsettings = np.seterr(all='raise')