forked from spp1914-cocpn/cocpn-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtests.sh
executable file
·26 lines (22 loc) · 1001 Bytes
/
runtests.sh
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
#!/bin/bash
inPar=true
while getopts pnh name
do
case $name in
p) inPar=true;;
n) inPar=false;;
h) echo "Script to run all the Matlab test cases.";
echo "Available options:"
echo "p: Runs the test cases in parallel, with the number of jobs dependent on the Matlab installation and the number of physical cores. This is the default option and used if called without argument";
echo "n: Runs the test cases sequentially, one after the other.";
echo "h: Print this help.";
exit 0;;
?) echo "Usage: runtests [-p] [-n] [-h]";
exit 2;;
esac
done
cd libncs_matlab
make cleanmex
make mex -j 4
cd ..
matlab -nodisplay -r "addpath(genpath('libncs_matlab/tests'));addpath(genpath('matlab/Tests')); addpath(genpath('matlab/Classes'));addpath(genpath('matlab/external'));addpath(genpath('matlab/functions')); addpath(genpath('matlab/out')); results=[executeTestsMatlab($inPar) executeTestsLibNcsMatlab($inPar)];exit(any([results.Failed]));"