[Scipy-svn] r4951 - trunk/scipy/sparse/linalg/eigen/arpack/tests

scipy-svn at scipy.org scipy-svn at scipy.org
Mon Nov 3 01:34:37 EST 2008


Author: chris.burns
Date: 2008-11-03 00:34:34 -0600 (Mon, 03 Nov 2008)
New Revision: 4951

Modified:
   trunk/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py
Log:
Remove the OSX skipping of arpack tests.  David Cournapeau fixed the tests

Modified: trunk/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py
===================================================================
--- trunk/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py	2008-11-03 06:10:48 UTC (rev 4950)
+++ trunk/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py	2008-11-03 06:34:34 UTC (rev 4951)
@@ -10,12 +10,6 @@
 from numpy import array, finfo, argsort, dot, round, conj, random
 from scipy.sparse.linalg.eigen.arpack import eigen_symmetric, eigen
 
-# Include platform only for skipping test of complex arpack routines
-# in OSX Accelerate Framework.  Once these tests are fixed, this
-# import should be removed.
-from sys import platform
-darwin_skip_msg='Complex number bug with Accelerate Framework, see ticket #725.'
-
 def assert_almost_equal_cc(actual,desired,decimal=7,err_msg='',verbose=True):
     # almost equal or complex conjugates almost equal
     try:
@@ -152,7 +146,6 @@
                                       eval[i]*evec[:,i],
                                       decimal=_ndigits[typ])
 
-    #@dec.skipif(platform=='darwin', darwin_skip_msg)
     def test_complex_symmetric_modes(self):
         k=2
         for typ in 'FD':
@@ -263,8 +256,6 @@
                                       eval[i]*evec[:,i],
                                       decimal=_ndigits[typ])
 
-
-    #@dec.skipif(platform=='darwin', darwin_skip_msg)
     def test_complex_nonsymmetric_modes(self):
         k=2
         for typ in 'FD':
@@ -272,8 +263,5 @@
                 for m in self.nonsymmetric:
                       self.eval_evec(m,typ,k,which)
 
-
-
-
 if __name__ == "__main__":
     run_module_suite()




More information about the Scipy-svn mailing list