Skip to content
Snippets Groups Projects
Commit 00be5152 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Removed condition.

The routine get_directory_description only returns m files in the
targeted directory and subfolders.
parent cdca395b
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ function [report, time] = run_unitary_tests(listoffiles)
report = {};
for f=1:length(listoffiles)
if isequal(listoffiles{f}(end-1:end),'.m') && isempty(strfind(listoffiles{f},'.#'))
if isempty(strfind(listoffiles{f},'.#'))
if is_unitary_test_available(listoffiles{f})
disp(['***** Process unitary tests in ' listoffiles{f}])
[check, info] = mtest(listoffiles{f});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment