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

Cosmetic change.

Print PASSED or FAILED for each tested routine.
parent a9fc113f
No related branches found
No related tags found
No related merge requests found
......@@ -36,8 +36,12 @@ report = {};
for f=1:length(listoffiles)
if isempty(strfind(listoffiles{f},'.#'))
if is_unitary_test_available(listoffiles{f})
disp(['***** Process unitary tests in ' listoffiles{f}])
[check, info] = mtest(listoffiles{f});
if check
disp(['***** Unitary tests in ' listoffiles{f} ' PASSED!'] )
else
disp(['***** Unitary tests in ' listoffiles{f} ' FAILED!'] )
end
report = [report; info];
else
disp(['Booh! No unitary tests available in ' 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