Skip to content
Snippets Groups Projects
Verified Commit 75acffe1 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Onx

parent e7142824
No related branches found
No related tags found
No related merge requests found
Pipeline #1875 failed
......@@ -55,7 +55,8 @@ return
%@test:1
% Create a data m-file
fid = fopen('data_m_file.m','w');
datafile = tempname;
fid = fopen(datafile,'w');
fprintf(fid,'FREQ__ = 4;');
fprintf(fid,'INIT__ = ''1938Q4'';');
fprintf(fid,'NAMES__ = {''azert'';''yuiop''};');
......@@ -71,9 +72,8 @@ return
% Try to read the data m-file
try
datafile = 'data_m_file.m';
[freq, init, data, varlist, tex, ops, tags] = load_m_file_data(datafile);
delete('data_m_file.m');
delete(datafile);
t(1) = 1;
catch exception
t(1) = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment