# HG changeset patch # User jwe # Date 1112910697 0 # Node ID eae7b40388e9ad87d423ea35a57d0df99c659cd5 # Parent b82d85bf54ae5cce42e48fd31b2eb7df51e0954d [project @ 2005-04-07 21:51:37 by jwe] diff -r b82d85bf54ae -r eae7b40388e9 test/octave.test/io/load-save.m --- a/test/octave.test/io/load-save.m Thu Apr 07 08:27:26 2005 +0000 +++ b/test/octave.test/io/load-save.m Thu Apr 07 21:51:37 2005 +0000 @@ -1,3 +1,5 @@ +1; + function [ret, files] = testls (input) ## flag a1 global so as to test the storage of global flags @@ -64,7 +66,7 @@ vars = "a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20"; if (! input) for i = 1:length(files) - eval (["save " opts{i} files{i} vars]); + eval (["save " opts{i} " " files{i} " " vars]); endfor else b1 = a1; b2 = a2; b3 = a3; b4 = a4; b5 = a5; @@ -177,8 +179,6 @@ endfunction - - [save_status, save_files] = testls (0); [load_status, load_files] = testls (1);