~jocave/checkbox/hybrid-amd-gpu-mods

« back to all changes in this revision

Viewing changes to checkbox-touch/tests/autopilot/run

  • Committer: Sylvain Pineau
  • Date: 2014-07-29 16:05:54 UTC
  • mto: This revision was merged to the branch mainline in revision 3149.
  • Revision ID: sylvain.pineau@canonical.com-20140729160554-qev8887xbunn9tmi
checkbox-ng:launchers:checkbox-cli: The checkbox-cli launcher

Running the default whitelist (with the suite selection screen skipped)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
 
3
 
if [[ -z `which autopilot3` ]]; then
4
 
  echo "Autopilot is not installed. Skip"
5
 
  exit 1
6
 
fi
7
 
 
8
 
SCRIPTPATH=`dirname $0`
9
 
pushd ${SCRIPTPATH}
10
 
python3 `which autopilot3` run --timeout-profile=long checkbox_touch
11
 
ret=$?
12
 
popd
13
 
exit $ret
14