Skip to content
Snippets Groups Projects
Commit 22be7aa5 authored by Ravensbergen Timo's avatar Ravensbergen Timo
Browse files

changed run tests script to pickup wrapper tests

parent 686665f1
Branches
No related tags found
No related merge requests found
......@@ -11,4 +11,6 @@ TP.rowvect = int32([1 2 3]);
TP.colvect = single([1 2 3]');
TP.matrix = int8([1 2; 3 4]);
TP = Simulink.Parameter(TP);
end
......@@ -78,6 +78,11 @@ switch lower(test_case)
suite_algos = testsuite('algos','IncludingSubfolders',true,'superclass','SCDDSalgo_test');
suite_all = [suite_all,suite_algos];
s = HasTag('algos');
case {'wrapper'}
% add wrapper template folder
suite_wrapper = testsuite('algos','IncludingSubfolders',true,'superclass','SCDDSwrapper_test');
suite_all = [suite_all, suite_wrapper];
s = HasTag('wrapper');
otherwise
% assume tag with this name
s = HasTag(test_case);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment