~sergiusens/camera-app/pseudo_adt

34.2.1 by Michael Zanetti
added autopilot tests which work with the new visuals of the camera
1
#!/bin/bash
2
export PATH=/opt/qt5/bin:$PATH
3
cd tests/autopilot
4
5
echo running with arg: $1
6
7
if [ "$1" == "" ]; then
8
	autopilot run camera_app
9
else
10
	autopilot run -o ../../$1 -f xml -r -rd ../../ camera_app
11
fi
12
13
exit 0