Skip to content

Commit

Permalink
Tag #842 failure on windows as known failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
cournape committed Jan 10, 2009
1 parent f5dfff5 commit ae65422
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scipy/sparse/linalg/isolve/tests/test_iterative.py
@@ -1,6 +1,7 @@
#!/usr/bin/env python
""" Test functions for the sparse.linalg.isolve module
"""
import sys

from numpy.testing import *

Expand Down Expand Up @@ -63,6 +64,7 @@ def setUp(self):
#A = spdiags( data, [0,-1], 10, 10, format='csr')
#self.cases.append( (A,False,True) )

@dec.knownfailureif(sys.platform=='win32', "This test is known to fail on windows")
def test_maxiter(self):
"""test whether maxiter is respected"""

Expand All @@ -82,6 +84,7 @@ def callback(x):
assert_equal(len(residuals), 3)
assert_equal(info, 3)

@dec.knownfailureif(sys.platform=='win32', "This test is known to fail on windows")
def test_convergence(self):
"""test whether all methods converge"""

Expand All @@ -102,6 +105,7 @@ def test_convergence(self):

assert( norm(b - A*x) < tol*norm(b) )

@dec.knownfailureif(sys.platform=='win32', "This test is known to fail on windows")
def test_precond(self):
"""test whether all methods accept a trivial preconditioner"""

Expand Down

0 comments on commit ae65422

Please sign in to comment.