~kalikiana/ubuntu-ui-toolkit/appsettings

« back to all changes in this revision

Viewing changes to run_tests.sh

  • Committer: Zsombor Egri
  • Date: 2014-04-20 19:25:12 UTC
  • mto: (700.276.32 combobutton)
  • mto: This revision was merged to the branch mainline in revision 770.
  • Revision ID: zsombor.egri@canonical.com-20140420192512-o0juovm3r2a3myyj
version set to 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
16
#
17
17
 
 
18
source $PWD/export_modules_dir.sh
 
19
 
18
20
cd tests/autopilot
19
21
 
20
22
echo running with arg: $1
21
23
 
22
24
UBUNTU_UI_TOOLKIT_AUTOPILOT_FROM_SOURCE=1
23
25
if [ "$1" == "" ]; then
24
 
        python3 -m autopilot.run run ubuntuuitoolkit
 
26
        autopilot3 run ubuntuuitoolkit
25
27
else
26
 
        python3 -m autopilot.run run -o ../../$1 -f xml -r -rd ../../ ubuntuuitoolkit
 
28
        autopilot3 run -o ../../$1 -f xml -r -rd ../../ $1
27
29
fi
28
30
 
29
31
exit 0