From: <prn...@us...> - 2012-06-07 22:11:14
|
Revision: 10590 http://octave.svn.sourceforge.net/octave/?rev=10590&view=rev Author: prnienhuis Date: 2012-06-07 22:11:08 +0000 (Thu, 07 Jun 2012) Log Message: ----------- Stricter formula recovery check & adapted to COM formula support Modified Paths: -------------- trunk/octave-forge/main/io/inst/io_xls_testscript.m Modified: trunk/octave-forge/main/io/inst/io_xls_testscript.m =================================================================== --- trunk/octave-forge/main/io/inst/io_xls_testscript.m 2012-06-07 22:10:30 UTC (rev 10589) +++ trunk/octave-forge/main/io/inst/io_xls_testscript.m 2012-06-07 22:11:08 UTC (rev 10590) @@ -106,7 +106,7 @@ try # Just check if it contains any string - assert ( (ischar (raw{3, 3}) && ~isempty (raw(3, 3))), true); + assert ( (ischar (raw{3, 3}) && ~isempty (raw(3, 3)) && raw{3, 3}(1) == "="), true); printf (" ...OK, formula recovered ('%s').\n", raw{3, 3}); catch printf ("Hmmm.... error, see 'raw(3, 3)'"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |