mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2025-07-15 21:05:16 +02:00
13 lines
285 B
Bash
13 lines
285 B
Bash
#!/bin/sh
|
|
|
|
echo "Starting the squish server...$1 --daemon"
|
|
$1 --daemon
|
|
|
|
echo "Running the test case...$2 --testcase $3 --wrapper $4 --aut $5"
|
|
$2 --testcase $3 --wrapper $4 --aut $5
|
|
returnValue=$?
|
|
|
|
echo "Stopping the squish server...$1 --stop"
|
|
$1 --stop
|
|
|
|
exit $returnValue
|