#!/bin/bash

if [[ -z `which autopilot3` ]]; then
  echo "Autopilot3 is not installed. Skip"
  exit
fi

#Some of the alarm tests  depend on the days names  so we need to keep it in english
export LC_ALL=en_GB.UTF-8
export LC_TIME=en_GB.UTF-8
export LC_MEASUREMENT=en_GB.UTF-8

SCRIPTPATH=`dirname $0`
pushd ${SCRIPTPATH}
autopilot3 run lomiri_clock_app
retcode=$?
popd
exit $retcode
