blob: 409b46a3ed5d77dfc8464331c3ac0271517e3af9 [file] [log] [blame]
Brad Davis5fe7b172008-12-08 17:39:30 -05001#!/bin/sh
2
3echo "Starting the squish server...$1 --daemon"
4$1 --daemon
5
6echo "Running the test case...$2 --testcase $3 --wrapper $4 --aut $5"
7$2 --testcase $3 --wrapper $4 --aut $5
8returnValue=$?
9
10echo "Stopping the squish server...$1 --stop"
11$1 --stop
12
13exit $returnValue