Mon 25 Apr 2016 07:44:16 PM UTC, comment #3:
Yep, it appears that when building new versions in an existing mxe-octave build tree the extracted test files do not seem to get renewed. At least, that's what I find here.
Sorry for the noise.
Closing with "invalid" (for the proper stats)
|
Sun 24 Apr 2016 09:13:09 PM UTC, original submission:
Investigating textscan FAILs on Windows with a just cross-compiled dev Octave, I found this behavior:
Now, the first call is functionally the same as the second, as ReturnOnError's default setting = "true" (at least it is in Matlab), and should return the same data as the second.
I think the first textscan call should rather be:
c = textscan (fid, "%f %f %f", "ReturnOnError", 0);
and the assert should rather check for an error message like "error: textscan: Read error in field"
|