[Numpy-svn] r8346 - branches/1.4.x/numpy/core/tests

numpy-svn at scipy.org numpy-svn at scipy.org
Sun Apr 18 06:48:14 EDT 2010


Author: rgommers
Date: 2010-04-18 05:48:14 -0500 (Sun, 18 Apr 2010)
New Revision: 8346

Modified:
   branches/1.4.x/numpy/core/tests/test_umath_complex.py
Log:
TST: Mark TestClog as known failure. Has been failing on Windows for a while.

Modified: branches/1.4.x/numpy/core/tests/test_umath_complex.py
===================================================================
--- branches/1.4.x/numpy/core/tests/test_umath_complex.py	2010-04-18 09:40:57 UTC (rev 8345)
+++ branches/1.4.x/numpy/core/tests/test_umath_complex.py	2010-04-18 10:48:14 UTC (rev 8346)
@@ -8,7 +8,7 @@
 
 class TestCexp(object):
     def test_simple(self):
-        check = check_complex_value 
+        check = check_complex_value
         f = np.exp
 
         yield check, f, 1, 0, np.exp(1), 0, False
@@ -20,7 +20,7 @@
     def test_special_values(self):
         # C99: Section G 6.3.1
 
-        check = check_complex_value 
+        check = check_complex_value
         f = np.exp
 
         # cexp(+-0 + 0i) is 1 + 0i
@@ -111,6 +111,7 @@
         for i in range(len(x)):
             assert_almost_equal(y[i], y_r[i])
 
+    @dec.knownfailureif(True, "clog(- inf + i inf) fails on Windows.")
     def test_special_values(self):
         xl = []
         yl = []
@@ -248,7 +249,7 @@
     #    _check_branch_cut(f, -1, 0, 1, -1)
 
     def test_special_values(self):
-        check = check_complex_value 
+        check = check_complex_value
         f = np.sqrt
 
         # C99: Sec G 6.4.2




More information about the Numpy-svn mailing list