~ubuntu-branches/ubuntu/trusty/cmake3/trusty-updates

« back to all changes in this revision

Viewing changes to Modules/SquishRunTestCase.bat

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2017-02-23 17:55:24 UTC
  • Revision ID: package-import@ubuntu.com-20170223175524-5nh7s4pu97fsa0t7
Tags: upstream-3.5.1
ImportĀ upstreamĀ versionĀ 3.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
echo 'Starting the squish server...'
 
2
start %1
 
3
 
 
4
echo 'Running the test case...'
 
5
%2 --testcase %3 --wrapper %4 --aut %5
 
6
set result=%ERRORLEVEL%
 
7
 
 
8
echo 'Stopping the squish server...'
 
9
%1 --stop
 
10
 
 
11
exit \b %result%