You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2014/11/28 16:02:29 UTC

git commit: [flex-falcon] [refs/heads/develop] - - Increased the total timeout of the tests from 5 to 50 minutes (temporarily) - Fixed a warning in the timeout executor.

Repository: flex-falcon
Updated Branches:
  refs/heads/develop 1ea4d634b -> fade31b4a


- Increased the total timeout of the tests from 5 to 50 minutes (temporarily)
- Fixed a warning in the timeout executor.


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

Branch: refs/heads/develop
Commit: fade31b4ad1ebc5b49ea129f8d7462042d053ac4
Parents: 1ea4d63
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Fri Nov 28 16:02:22 2014 +0100
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Fri Nov 28 16:02:22 2014 +0100

----------------------------------------------------------------------
 compiler.tests/build.xml                                         | 2 +-
 compiler.tests/feature-tests/mxml/tags/MXMLFeatureTestsBase.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/fade31b4/compiler.tests/build.xml
----------------------------------------------------------------------
diff --git a/compiler.tests/build.xml b/compiler.tests/build.xml
index 96b384f..737e3d7 100644
--- a/compiler.tests/build.xml
+++ b/compiler.tests/build.xml
@@ -27,7 +27,7 @@
 
     <property environment="env"/>
 	<property file="unittest.properties" />
-	<property name="test.timeout" value="300000" />
+	<property name="test.timeout" value="3000000" />
 	<property name="maxmem" value="512" />
 	
 	<condition property="sdk" value="${FLEX_HOME}" else="${env.FLEX_HOME}">

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/fade31b4/compiler.tests/feature-tests/mxml/tags/MXMLFeatureTestsBase.java
----------------------------------------------------------------------
diff --git a/compiler.tests/feature-tests/mxml/tags/MXMLFeatureTestsBase.java b/compiler.tests/feature-tests/mxml/tags/MXMLFeatureTestsBase.java
index 068d668..0e4a0f2 100644
--- a/compiler.tests/feature-tests/mxml/tags/MXMLFeatureTestsBase.java
+++ b/compiler.tests/feature-tests/mxml/tags/MXMLFeatureTestsBase.java
@@ -183,7 +183,7 @@ public class MXMLFeatureTestsBase
 		}
 	}
 
-	private static class CallableProcess implements Callable {
+	private static class CallableProcess implements Callable<Integer> {
 		private Process p;
 
 		public CallableProcess(Process process) {