1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
function [total_tests_failed,list_of_failed_tests]=test_all_ltfat(prec,varargin)
global LTFAT_TEST_TYPE;
global LTFAT_TESTS_TODO;
definput.keyvals.tests=[];
definput.keyvals.ignore={};
[flags,kv]=ltfatarghelper({'tests'},definput,varargin);
if exist ("LTFAT_TESTS_TODO") == 1
tests_todo=LTFAT_TESTS_TODO;
else
tests_todo={
'dgt','dwilt','wmdct',...
'dgt_fb','multiwin','gabfirtight',...
'purefreq','zak',...
'gabmulappr',...
'dgt2','dwilt2','wmdct2',...
'firwin',...
'spread', 'dsft', 'thresh',...
'pconv','lconv','involute',...
'signals','realout','windrivers',...
'nsdgt','filterbank',...
'pgauss','pfilt',...
'rangecompress',...
'gabmuleigs','phaselock',...
'fwt','blockfwt','ufwt','wfbt','uwfbt','wpfbt','uwpfbt','fwt2','undeceq',...
'wfbt2filterbank','freqorder','gga','chirpzt',...
'frames', 'frametf', 'frft', 'nonu2ufilterbank', 'dtwfb', 'dtwfb2filterbank',...
'ambiguityfunction','wignervilledist','constructphase','multidgtrealmp'
};
end
if ~isempty(kv.tests)
if ischar(kv.tests)
kv.tests = {kv.tests};
end
tests_todo = kv.tests;
end
if ~isempty(kv.ignore)
if ischar(kv.ignore)
kv.ignore = {kv.ignore};
end
if ~iscell(kv.ignore)
error('%s: Ignored tests list is incorrect.',upper(mfilename));
end
ignoreList = [];
ignoreUsed = [];
ignoreCell = kv.ignore;
for ii=1:numel(tests_todo)
res = cellfun(@(iEl) strcmpi(tests_todo{ii},iEl) , ignoreCell);
if any(res)
ignoreList(end+1) = ii;
disp(sprintf('Ignoring test: %s',tests_todo{ii}))
end
[~,idx]=find(res>0);
ignoreUsed(end+1:end+numel(idx)) = idx;
end
if ~isempty(ignoreList)
tests_todo(ignoreList) = [];
end
if numel(ignoreUsed)~=numel(ignoreCell)
ignoreCell(ignoreUsed) = [];
strToPlot = cellfun(@(iEl) [iEl,', '],ignoreCell,'UniformOutput',0);
strToPlot = cell2mat(strToPlot);
error('%s: The following ignored tests were not found: %s',...
upper(mfilename),strToPlot(1:end-2));
end
end
precarray={'double','single'};
if nargin >0 && ~strcmpi(prec,'all')
if any(cellfun(@(pEl)strcmpi(pEl,prec),precarray))
precarray={prec};
else
error('%s: Unknown data precision.',upper(mfilename));
end
end
%-*- texinfo -*-
%@deftypefn {Function} test_all_ltfat
%@verbatim
% Testing of pbspline has been removed, as it causes too much trouble.
%@end verbatim
%@strong{Url}: @url{http://ltfat.github.io/doc/testing/test_all_ltfat.html}
%@end deftypefn
% Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
% This file is part of LTFAT version 2.3.1
%
% This program is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <http://www.gnu.org/licenses/>.
total_tests_failed=0;
list_of_failed_tests={};
for precidx=1:numel(precarray)
prec=precarray{precidx};
LTFAT_TEST_TYPE=prec;
for ii=1:length(tests_todo)
test_failed=feval(['test_',tests_todo{ii}]);
total_tests_failed=total_tests_failed+test_failed;
if test_failed>0
list_of_failed_tests{end+1}=['test_',tests_todo{ii},' ',prec];
end;
end;
end;
clear -global LTFAT_TEST_TYPE;
disp(' ');
if total_tests_failed==0
disp('ALL TESTS PASSED');
else
s=sprintf('%i TESTS FAILED',total_tests_failed);
disp(s);
disp('The following test scripts contained failed tests');
for ii=1:length(list_of_failed_tests)
disp([' ',list_of_failed_tests{ii}]);
end;
end;
|