~fboucault/camera-app/fix_header_flickering_arale

« back to all changes in this revision

Viewing changes to run_tests.sh

  • Committer: Tarmac
  • Author(s): Michael Zanetti
  • Date: 2012-10-25 16:05:08 UTC
  • mfrom: (34.2.3 camera-app)
  • Revision ID: tarmac-20121025160508-6pchj5tquwb7pe0z
Ported the autopilot tests to the new camera visuals
adds a package -testing package for the tests. Approved by PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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