[Scipy-svn] r5045 - trunk/scipy/io/matlab/tests

scipy-svn at scipy.org scipy-svn at scipy.org
Mon Nov 10 10:46:40 EST 2008


Author: cdavid
Date: 2008-11-10 09:46:35 -0600 (Mon, 10 Nov 2008)
New Revision: 5045

Modified:
   trunk/scipy/io/matlab/tests/test_mio.py
Log:
Mark regression test for #653 as a knownfailure.

Modified: trunk/scipy/io/matlab/tests/test_mio.py
===================================================================
--- trunk/scipy/io/matlab/tests/test_mio.py	2008-11-10 15:34:50 UTC (rev 5044)
+++ trunk/scipy/io/matlab/tests/test_mio.py	2008-11-10 15:46:35 UTC (rev 5045)
@@ -13,7 +13,7 @@
 from numpy.testing import \
      assert_array_almost_equal, \
      assert_equal, \
-     assert_raises
+     assert_raises, dec
 
 from nose.tools import assert_true
 
@@ -338,6 +338,8 @@
     yield assert_raises, FutureWarning, savemat, StringIO(), {}
     warnings.resetwarnings()
 
+ at dec.knownfailureif(True, "Infinite recursion when writing a simple "\
+                          "dictionary to matlab file.")
 def test_regression_653():
     """Regression test for #653."""
     savemat(StringIO(), {'d':{1:2}}, format='5')




More information about the Scipy-svn mailing list