blob: 293e88f8f1928c06633bf110042965c12f8eac8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
echo 'Starting the squish server...'
start %1
echo 'Running the test case...'
%2 --testcase %3 --wrapper %4 --aut %5
set result=%ERRORLEVEL%
echo 'Stopping the squish server...'
%1 --stop
exit \b %result%
|