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/28 05:06:19 UTC

[1/3] git commit: [flex-sdk] [refs/heads/develop] - fix patch testing script

Updated Branches:
  refs/heads/develop e27bee017 -> 5b94467df


fix patch testing 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/c3cf22a7
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/c3cf22a7
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/c3cf22a7

Branch: refs/heads/develop
Commit: c3cf22a7f31f907d959d2bde1b8759ede0175a85
Parents: e27bee0
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 28 03:59:31 2013 +0100
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 28 03:59:31 2013 +0100

----------------------------------------------------------------------
 test_patch.sh |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/c3cf22a7/test_patch.sh
----------------------------------------------------------------------
diff --git a/test_patch.sh b/test_patch.sh
index 31aeac6..dcccf99 100755
--- a/test_patch.sh
+++ b/test_patch.sh
@@ -27,6 +27,7 @@ if [ $# -lt 1 ]
 	echo "usage: test_patch.sh <patch_filename>"
 	exit
 fi
+echo "running patch for $2"
 git apply $1
 git status >gitstatus.txt
 cd mustella/utilities/MustellaTestChooser/src
@@ -34,7 +35,7 @@ cd mustella/utilities/MustellaTestChooser/src
 cd ../../../..
 if [ -s mustella/changes.txt ]
 then
-    mutt -s "Patch Received: running tests" $2 <changes.txt 
+    mutt -s "Patch Received: running tests" $2 <mustella/changes.txt 
     ant main checkintests
 	rc=$?
 	if [[ $rc != 0 ]] ; then


[2/3] git commit: [flex-sdk] [refs/heads/develop] - fix patch testing script

Posted by ah...@apache.org.
fix patch testing 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/afd54821
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/afd54821
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/afd54821

Branch: refs/heads/develop
Commit: afd54821148ff806c4ab00d9a9ab05325d7eec20
Parents: c3cf22a
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 28 04:03:45 2013 +0100
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 28 04:03:45 2013 +0100

----------------------------------------------------------------------
 mustella/test_changes.sh |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/afd54821/mustella/test_changes.sh
----------------------------------------------------------------------
diff --git a/mustella/test_changes.sh b/mustella/test_changes.sh
index 0a81981..6cf4606 100755
--- a/mustella/test_changes.sh
+++ b/mustella/test_changes.sh
@@ -28,7 +28,12 @@ then
 sh ./mini_run.sh $MINI_RUN_TIMEOUT $MINI_RUN_LOCALHOST -changes
 if [ -s failures.txt ]
 then
+cp results.txt results.bak
 sh ./mini_run.sh $MINI_RUN_TIMEOUT $MINI_RUN_LOCALHOST -failures
+cat results.bak results.txt results.all
+cp results.all results.txt
+rm results.bak
+rm results.all
 fi
 else
         if [ $# -lt 1 ]
@@ -55,6 +60,6 @@ else
     then
         echo "$numlines tests passed"
     else
-         mutt -s "$numlines tests passed" $1 <$2
+         mutt -s "$numlines tests passed" $1 <results.txt
     fi
 fi


[3/3] git commit: [flex-sdk] [refs/heads/develop] - send results when done

Posted by ah...@apache.org.
send results when done


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

Branch: refs/heads/develop
Commit: 5b94467dfd2812a88b22f706bc4b7ada7aa392b9
Parents: afd5482
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 28 04:04:33 2013 +0100
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 28 04:04:33 2013 +0100

----------------------------------------------------------------------
 mustella/test_changes.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5b94467d/mustella/test_changes.sh
----------------------------------------------------------------------
diff --git a/mustella/test_changes.sh b/mustella/test_changes.sh
index 6cf4606..2b94830 100755
--- a/mustella/test_changes.sh
+++ b/mustella/test_changes.sh
@@ -30,7 +30,7 @@ if [ -s failures.txt ]
 then
 cp results.txt results.bak
 sh ./mini_run.sh $MINI_RUN_TIMEOUT $MINI_RUN_LOCALHOST -failures
-cat results.bak results.txt results.all
+cat results.bak results.txt >results.all
 cp results.all results.txt
 rm results.bak
 rm results.all