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

Octave compatibility fix: skip unit test for load_m_file_data_legacy.m

The failure is impossible to reproduce outside the runners. Skip the test, for
lack of a better solution.

(cherry picked from commit 3ee9ada8)
parent 4ff76a50
Branches
Tags
No related merge requests found
% Copyright (C) 2013-2019 Dynare Team % Copyright (C) 2013-2020 Dynare Team
% %
% This file is part of Dynare. % This file is part of Dynare.
% %
...@@ -31,8 +31,11 @@ end ...@@ -31,8 +31,11 @@ end
mlist = get_directory_description('../matlab'); mlist = get_directory_description('../matlab');
% Under Octave, do not run tests under matlab/missing/stats/ % Under Octave, do not run tests under matlab/missing/stats/
% Also skip load_m_data_file_legacy.m: it fails in the first test, but
% this is impossible to reproduce outside the runners.
if isoctave if isoctave
mlist = mlist(find(~strncmp('../matlab/missing/stats/', mlist, 24))); mlist = mlist(find(~strncmp('../matlab/missing/stats/', mlist, 24)));
mlist = mlist(find(~strcmp('../matlab/load_m_file_data_legacy.m', mlist)));
end end
failedtests = {}; failedtests = {};
...@@ -72,4 +75,4 @@ fprintf(fid,':elapsed-time: %f\n',0.0); ...@@ -72,4 +75,4 @@ fprintf(fid,':elapsed-time: %f\n',0.0);
fclose(fid); fclose(fid);
if ~isoctave if ~isoctave
exit exit
end end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment