summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2008-07-22 19:52:34 +0000
committerPauli Virtanen <pav@iki.fi>2008-07-22 19:52:34 +0000
commite9ae63eda3f9ac5076ba2d216c96e6e137270009 (patch)
tree7e1dc757cc7fb09c678f5fc0a433706ca779e3c6
parent856861c4e59c945aac844dd172fa9612623e858b (diff)
downloadnumpy-e9ae63eda3f9ac5076ba2d216c96e6e137270009.tar.gz
Skip one more possibly failing C99 test
-rw-r--r--numpy/core/tests/test_umath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_umath.py b/numpy/core/tests/test_umath.py
index a0878c730..eda52f961 100644
--- a/numpy/core/tests/test_umath.py
+++ b/numpy/core/tests/test_umath.py
@@ -278,7 +278,7 @@ class TestC99(object):
def test_clog(self):
for p, v, e in [
((-0., 0.), (-inf, pi), 'divide'),
- ((+0., 0.), (-inf, 0.), 'divide'),
+ ((+0., 0.), (-inf, 0.), 'XXX divide'), # fails on OSX?
((1., inf), (inf, pi/2), ''),
((1., nan), (nan, nan), 'invalid-optional'),
((-inf, 1.), (inf, pi), ''),