~sergiusens/camera-app/pseudo_adt

1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
export PATH=/opt/qt5/bin:$PATH
cd tests/autopilot

echo running with arg: $1

if [ "$1" == "" ]; then
	autopilot run camera_app
else
	autopilot run -o ../../$1 -f xml -r -rd ../../ camera_app
fi

exit 0