Is it possible to perform batch execution of the test files using the Parallel Computing Toolbox to speed up the execution in SystemTest 2.3(R2009a)?

1 view (last 30 days)
I would like to perform a batch execution of the test files and would like to use the Parallel Computing toolbox in order to speed up the execution.
It would be good to have this feature built-in to the SystemTest graphical interface.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 27 Jun 2009
The ability to perform batch execution of the test files using the Parallel Computing Toolbox to speed up the execution is not available in SystemTest 2.3(R2009a).
To workaround this issue, refer to the script below which searches the current working directory for all the '.test' files. It puts all the names of the '.test' files in a cell array and passes it to the STRUN command.
list = dir('*.test');
testnames = {};
for i=1:size(list,1)
testnames(end+1) = {list(i).name};
end
strun(testnames);

More Answers (0)

Tags

No tags entered yet.

Products


Release

R2009a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!