Updated Branches: refs/heads/develop 227167a8f -> f419cd298
Working on getting the AIR and mobile tests to run on the VM (part 2). Signed-off-by: Erik de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/f419cd29 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/f419cd29 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/f419cd29 Branch: refs/heads/develop Commit: f419cd298e144b35b4e458417101d8bdcbf04141 Parents: 227167a Author: Erik de Bruin <[email protected]> Authored: Thu Jun 20 10:04:18 2013 +0200 Committer: Erik de Bruin <[email protected]> Committed: Thu Jun 20 10:04:18 2013 +0200 ---------------------------------------------------------------------- mustella/jenkins.sh | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/f419cd29/mustella/jenkins.sh ---------------------------------------------------------------------- diff --git a/mustella/jenkins.sh b/mustella/jenkins.sh index 0b0e243..80f5c36 100755 --- a/mustella/jenkins.sh +++ b/mustella/jenkins.sh @@ -24,12 +24,12 @@ ## NOTE: this file MUST HAVE Unix style line endings! ## -#export SHELLOPTS -#set -o igncr +export SHELLOPTS +set -o igncr -# Run main SDK tests +# Main #sh ./mini_run.sh -timeout=60000 -all #if [[ -s failures.txt ]] ; then @@ -41,7 +41,7 @@ -# Run AIR tests +# AIR sh ./mini_run.sh -apollo tests/apollo if [[ -s failures.txt ]] ; then @@ -51,3 +51,22 @@ else echo "All AIR tests passed on first run" fi ; + + +# Mobile + +# delete previous 'local.properties' +# create new 'local.properties' +#target_os_name=android +#android_sdk=location of your Android SDK +#runtimeApk=${AIR_HOME}/runtimes/air/android/emulator/Runtime.apk +#device_name=win + +#sh ./mini_run.sh -mobile tests/mobile + +#if [[ -s failures.txt ]] ; then +# echo "Some mobile tests failed: running '-failures'" +# sh ./mini_run.sh -failures +#else +# echo "All mobile tests passed on first run" +#fi ;
