Mercurial > hg > octave-nkf
diff scripts/io/textread.m @ 19470:6ca096827123
Use tempname() rather than tmpnam() in core Octave.
* scripts/miscellaneous/tempname.m: Removed m-file as function is now C++.
* scripts/miscellaneous/tmpnam.m: New m-file is an alias that calls tempname.
* scripts/miscellaneous/module.mk: Add tmpnam.m to build system.
* io.txi: Place tempname, tempdir, P_tmpdir docstrings in section on temporary
files.
* system.txi: Remove tempname, tempdir, P_tmpdir docstrings from generic
system functions section of manual.
* dirfns.cc, dlmread.cc, md5sum.cc, ov-fcn-handle.cc: Replace instances
of tmpnam with tempname in BIST code.
* file-io.cc (Ftempname): Change DEFUNX for tmpnam to DEFUN for tempname.
Remove seealso links to tmpnam.
* ftp.m, playaudio.m, wavwrite.m, imformats.m, imread.m, imwrite.m, imageIO.m,
csvwrite.m, dlmwrite.m, fileread.m, importdata.m, textread.m, textscan.m,
genvarname.m, unpack.m, install.m, legend.m, __gnuplot_drawnow__.m,
copyobj.m, hgsave.m, print.m, __ghostscript__.m, __gnuplot_get_var__.m,
__gnuplot_ginput__.m, __gnuplot_print__.m: Replace tmpnam with tempname in
core code.
* build-sparse-tests.sh, io.tst, prefer.tst, system.tst: Replace tmpnam with
tempname in test code.
author | Rik <rik@octave.org> |
---|---|
date | Wed, 22 Oct 2014 10:41:15 -0700 |
parents | 7bbe3658c5ef |
children | 0e1f5a750d00 |
line wrap: on
line diff
--- a/scripts/io/textread.m +++ b/scripts/io/textread.m @@ -221,7 +221,7 @@ %!test -%! f = tmpnam (); +%! f = tempname (); %! d = rand (5, 3); %! dlmwrite (f, d, "precision", "%5.2f"); %! [a, b, c] = textread (f, "%f %f %f", "delimiter", ",", "headerlines", 3); @@ -231,7 +231,7 @@ %! assert (c, d(4:5, 3), 1e-2); %!test -%! f = tmpnam (); +%! f = tempname (); %! d = rand (7, 2); %! dlmwrite (f, d, "precision", "%5.2f"); %! [a, b] = textread (f, "%f, %f", "headerlines", 1); @@ -240,7 +240,7 @@ %% Test reading 2D matrix with empty format %!test -%! f = tmpnam (); +%! f = tempname (); %! d = rand (5, 2); %! dlmwrite (f, d, "precision", "%5.2f"); %! A = textread (f, "", "headerlines", 3); @@ -249,7 +249,7 @@ %% Read multiple lines using empty format string %!test -%! f = tmpnam (); +%! f = tempname (); %! unlink (f); %! fid = fopen (f, "w"); %! d = rand (1, 4); @@ -261,7 +261,7 @@ %% Empty format, corner case = one line w/o EOL %!test -%! f = tmpnam (); +%! f = tempname (); %! unlink (f); %! fid = fopen (f, "w"); %! d = rand (1, 4); @@ -273,7 +273,7 @@ %% Read multiple lines using empty format string, missing data (should be 0) %!test -%! f = tmpnam (); +%! f = tempname (); %! unlink (f); %! fid = fopen (f, "w"); %! d = rand (1, 4); @@ -285,7 +285,7 @@ %% Test with empty positions - ML returns 0 for empty fields %!test -%! f = tmpnam (); +%! f = tempname (); %! unlink (f); %! fid = fopen (f, "w"); %! d = rand (1, 4); @@ -298,7 +298,7 @@ %% Another test with empty format + positions, now with more incomplete lower %% row (must be appended with zeros to get rectangular matrix) %!test -%! f = tmpnam (); +%! f = tempname (); %! unlink (f); %! fid = fopen (f, "w"); %! d = rand (1, 4);