Updated Branches: refs/heads/develop e981618f6 -> fe2ebca16
Working on getting the AIR and mobile tests to run on the VM (part 4). 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/fe2ebca1 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/fe2ebca1 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/fe2ebca1 Branch: refs/heads/develop Commit: fe2ebca16a98f9f9cac14009fe0e84d94782d88f Parents: e981618 Author: Erik de Bruin <[email protected]> Authored: Thu Jun 20 11:25:02 2013 +0200 Committer: Erik de Bruin <[email protected]> Committed: Thu Jun 20 11:25:02 2013 +0200 ---------------------------------------------------------------------- mustella/jenkins.sh | 42 ++++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 20 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/fe2ebca1/mustella/jenkins.sh ---------------------------------------------------------------------- diff --git a/mustella/jenkins.sh b/mustella/jenkins.sh index b328941..1a4373c 100755 --- a/mustella/jenkins.sh +++ b/mustella/jenkins.sh @@ -29,7 +29,13 @@ set -o igncr -# Main +# A method to be able to run various FP and AIR version is to override the env variables? +#export FLASHPLAYER_DEBUGGER= +#export AIR_HOME= + + + +# MAIN #sh ./mini_run.sh -timeout=60000 -all #if [[ -s failures.txt ]] ; then @@ -39,21 +45,17 @@ set -o igncr # echo "All main tests passed on first run" #fi ; - - # AIR -sh ./mini_run.sh -apollo tests/apollo - -if [[ -s failures.txt ]] ; then - echo "Some AIR tests failed: running '-failures'" - sh ./mini_run.sh -failures -else - echo "All AIR tests passed on first run" -fi ; - +#sh ./mini_run.sh -apollo tests/apollo +#if [[ -s failures.txt ]] ; then +# echo "Some AIR tests failed: running '-failures'" +# sh ./mini_run.sh -failures +#else +# echo "All AIR tests passed on first run" +#fi ; -# Mobile +# MOBILE rm -f local.properties cat > local.properties <<END target_os_name=android @@ -62,11 +64,11 @@ runtimeApk=${AIR_HOME}/runtimes/air/android/emulator/Runtime.apk device_name=win END -#sh ./mini_run.sh -mobile tests/mobile +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 ; +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 ;
