You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2013/05/27 15:59:52 UTC

[1/5] git commit: [flex-sdk] [refs/heads/develop] - add loop to check email

Updated Branches:
  refs/heads/develop 7f42c4586 -> 9a99c1254


add loop to check email


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/0f4981c6
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/0f4981c6
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/0f4981c6

Branch: refs/heads/develop
Commit: 0f4981c65aaff9426aacc98c93f7e6734ac93410
Parents: 7f42c45
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 27 05:55:54 2013 +0100
Committer: Alex Harui <ah...@apache.org>
Committed: Mon May 27 14:59:10 2013 +0100

----------------------------------------------------------------------
 patch_testing_loop.sh |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0f4981c6/patch_testing_loop.sh
----------------------------------------------------------------------
diff --git a/patch_testing_loop.sh b/patch_testing_loop.sh
new file mode 100644
index 0000000..753cfdd
--- /dev/null
+++ b/patch_testing_loop.sh
@@ -0,0 +1,30 @@
+#!/bin/bash
+################################################################################
+##
+##  Licensed to the Apache Software Foundation (ASF) under one or more
+##  contributor license agreements.  See the NOTICE file distributed with
+##  this work for additional information regarding copyright ownership.
+##  The ASF licenses this file to You under the Apache License, Version 2.0
+##  (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
+##
+##  Unless required by applicable law or agreed to in writing, software
+##  distributed under the License is distributed on an "AS IS" BASIS,
+##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+##  See the License for the specific language governing permissions and
+##  limitations under the License.
+##
+################################################################################
+##
+## patch_test_loop keeps running test_patch_by_email.sh every
+## 10 minutes
+##
+
+label1:
+echo "checking email at ${date}" 
+sh test_patch_by_email.sh
+sleep 10m
+goto label1
+


[5/5] git commit: [flex-sdk] [refs/heads/develop] - another tweak to script

Posted by ah...@apache.org.
another tweak to script


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/9a99c125
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/9a99c125
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/9a99c125

Branch: refs/heads/develop
Commit: 9a99c125431d2760f503dab29c5dac90b667a2cd
Parents: 92ba89e
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 27 06:43:08 2013 +0100
Committer: Alex Harui <ah...@apache.org>
Committed: Mon May 27 14:59:16 2013 +0100

----------------------------------------------------------------------
 test_patch_by_email.sh |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/9a99c125/test_patch_by_email.sh
----------------------------------------------------------------------
diff --git a/test_patch_by_email.sh b/test_patch_by_email.sh
index 96fc5e6..d4e9e5d 100644
--- a/test_patch_by_email.sh
+++ b/test_patch_by_email.sh
@@ -24,6 +24,8 @@
 
 rm /var/spool/mail/mustellarunner
 fetchmail
+if [ -f "/var/spool/mail/mustellarunner" ]
+then
 cd mustella/utilities/PatchExtractor/src
 echo "launching patch extractor"
 "$AIR_HOME/bin/adl" -runtime "$AIR_HOME/runtimes/air/win" PatchExtractor-app.xml -- c:/cygwin/var/spool/mail/mustellarunner
@@ -43,3 +45,6 @@ b=`basename $file .patch`
 read replyAddr < $d/$b.reply
 sh test_patch.sh $file $replyAddr
 done
+else
+    echo "no messages"
+fi


[2/5] git commit: [flex-sdk] [refs/heads/develop] - another tweak to patch tester

Posted by ah...@apache.org.
another tweak to patch tester


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/eb310e50
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/eb310e50
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/eb310e50

Branch: refs/heads/develop
Commit: eb310e5088f49ac9b8166558e3f07f9ed386bdb7
Parents: 0f4981c
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 27 06:06:18 2013 +0100
Committer: Alex Harui <ah...@apache.org>
Committed: Mon May 27 14:59:12 2013 +0100

----------------------------------------------------------------------
 patch_testing_loop.sh |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/eb310e50/patch_testing_loop.sh
----------------------------------------------------------------------
diff --git a/patch_testing_loop.sh b/patch_testing_loop.sh
index 753cfdd..56e50de 100644
--- a/patch_testing_loop.sh
+++ b/patch_testing_loop.sh
@@ -22,9 +22,10 @@
 ## 10 minutes
 ##
 
-label1:
-echo "checking email at ${date}" 
-sh test_patch_by_email.sh
-sleep 10m
-goto label1
+while [ 1 ]
+do
+    echo "checking email at `date`" 
+    sh test_patch_by_email.sh
+    sleep 10m
+done
 


[4/5] git commit: [flex-sdk] [refs/heads/develop] - another tweak to script

Posted by ah...@apache.org.
another tweak to script


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/92ba89e7
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/92ba89e7
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/92ba89e7

Branch: refs/heads/develop
Commit: 92ba89e7592227aebbd8d89d8ed22ab437c0a42d
Parents: 91a79d9
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 27 06:38:26 2013 +0100
Committer: Alex Harui <ah...@apache.org>
Committed: Mon May 27 14:59:14 2013 +0100

----------------------------------------------------------------------
 test_patch_by_email.sh |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/92ba89e7/test_patch_by_email.sh
----------------------------------------------------------------------
diff --git a/test_patch_by_email.sh b/test_patch_by_email.sh
index 237043d..96fc5e6 100644
--- a/test_patch_by_email.sh
+++ b/test_patch_by_email.sh
@@ -25,10 +25,12 @@
 rm /var/spool/mail/mustellarunner
 fetchmail
 cd mustella/utilities/PatchExtractor/src
+echo "launching patch extractor"
 "$AIR_HOME/bin/adl" -runtime "$AIR_HOME/runtimes/air/win" PatchExtractor-app.xml -- c:/cygwin/var/spool/mail/mustellarunner
 rc=$?
 if [[ $rc != 0 ]] ; then
     cd ../../../..
+    echo "no patches"
     exit $rc
 fi
 cd ../../../..


[3/5] git commit: [flex-sdk] [refs/heads/develop] - another tweak to script

Posted by ah...@apache.org.
another tweak to script


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/91a79d9e
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/91a79d9e
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/91a79d9e

Branch: refs/heads/develop
Commit: 91a79d9e4c7962606b4ded9ba41943e4f29151bc
Parents: eb310e5
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 27 06:33:41 2013 +0100
Committer: Alex Harui <ah...@apache.org>
Committed: Mon May 27 14:59:13 2013 +0100

----------------------------------------------------------------------
 patch_testing_loop.sh |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/91a79d9e/patch_testing_loop.sh
----------------------------------------------------------------------
diff --git a/patch_testing_loop.sh b/patch_testing_loop.sh
index 56e50de..62b2de1 100644
--- a/patch_testing_loop.sh
+++ b/patch_testing_loop.sh
@@ -26,6 +26,8 @@ while [ 1 ]
 do
     echo "checking email at `date`" 
     sh test_patch_by_email.sh
+    echo "going to sleep for a bit"
     sleep 10m
+    echo "done sleeping"
 done