Updated Branches: refs/heads/develop 3730fd251 -> 227167a8f
Working on getting the AIR and mobile tests to run on the VM. 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/227167a8 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/227167a8 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/227167a8 Branch: refs/heads/develop Commit: 227167a8fcbebe3c99d0506efa5fc1b7b8d791fb Parents: 3730fd2 Author: Erik de Bruin <[email protected]> Authored: Thu Jun 20 09:14:12 2013 +0200 Committer: Erik de Bruin <[email protected]> Committed: Thu Jun 20 09:14:12 2013 +0200 ---------------------------------------------------------------------- mustella/jenkins.sh | 34 ++++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/227167a8/mustella/jenkins.sh ---------------------------------------------------------------------- diff --git a/mustella/jenkins.sh b/mustella/jenkins.sh old mode 100644 new mode 100755 index 4673574..0b0e243 --- a/mustella/jenkins.sh +++ b/mustella/jenkins.sh @@ -8,7 +8,7 @@ ## (the "License"); you may not use this file except in compliance with ## the License. You may obtain a copy of the License at ## -## http://www.apache.org/licenses/LICENSE-2.0 +## http://www.apache.org/licenses/LICENSE-2.0 ## ## Unless required by applicable law or agreed to in writing, software ## distributed under the License is distributed on an "AS IS" BASIS, @@ -24,16 +24,30 @@ ## NOTE: this file MUST HAVE Unix style line endings! ## -export SHELLOPTS -set -o igncr +#export SHELLOPTS +#set -o igncr -sh ./mini_run.sh -timeout=60000 -all -#sh ./mini_run.sh -timeout=60000 -failures -#sh ./mini_run.sh -timeout=60000 tests/itemRenderers + + +# Run main SDK tests +#sh ./mini_run.sh -timeout=60000 -all + +#if [[ -s failures.txt ]] ; then +# echo "Some tests failed: running '-failures'" +# sh ./mini_run.sh -timeout=60000 -failures +#else +# echo "All main tests passed on first run" +#fi ; + + + +# Run AIR tests +sh ./mini_run.sh -apollo tests/apollo if [[ -s failures.txt ]] ; then - echo "Some tests failed: running '-failures'" - sh ./mini_run.sh -timeout=60000 -failures + echo "Some AIR tests failed: running '-failures'" + sh ./mini_run.sh -failures else - echo "All tests passed on first run" -fi ; \ No newline at end of file + echo "All AIR tests passed on first run" +fi ; +
