diff test/io.tst @ 19630:0e1f5a750d00

maint: Periodic merge of gui-release to default.
author John W. Eaton <jwe@octave.org>
date Tue, 20 Jan 2015 10:24:46 -0500
parents 03067dab10ca be7ac98fab43
children 4197fc428c7d
line wrap: on
line diff
--- a/test/io.tst	Tue Jan 20 09:55:41 2015 -0500
+++ b/test/io.tst	Tue Jan 20 10:24:46 2015 -0500
@@ -74,8 +74,8 @@
 %!
 %!  ret = 0;
 %!
-%!  files = cellfun (@fullfile, {P_tmpdir}, 
-%!                   {"text.mat", "binary.mat", "mat5.mat", "mat7.mat"}, 
+%!  files = cellfun (@fullfile, {P_tmpdir},
+%!                   {"text.mat", "binary.mat", "mat5.mat", "mat7.mat"},
 %!                   "UniformOutput", false);
 %!  opts = {"-z -text", "-z -binary", "-z -mat", "-v7"};
 %!  tols = {2*eps, 0, 0, 0};
@@ -198,7 +198,7 @@
 %! STR.string_fld = "Octave";
 %! STR.struct_fld.x = 0;
 %! STR.struct_fld.y = 1;
-%! 
+%!
 %! struct_dat = fullfile (P_tmpdir, "struct.dat");
 %! save (struct_dat, "-struct", "STR");
 %! STR = load (struct_dat);
@@ -209,8 +209,8 @@
 %!         STR.struct_fld.x == 0 && ...
 %!         STR.struct_fld.y == 1 );
 %!
-%! 
-%! save ("-binary", struct_dat, 
+%!
+%! save ("-binary", struct_dat,
 %!       "-struct", "STR", "matrix_fld", "str*_fld");
 %! STR =  load (struct_dat);
 %!