You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by go...@apache.org on 2013/01/21 21:51:57 UTC

svn commit: r1436614 - in /flex/falcon/trunk: compiler.tests/functional-tests/f/SDKSWCTests.java compiler/build.xml

Author: gordonsmith
Date: Mon Jan 21 20:51:57 2013
New Revision: 1436614

URL: http://svn.apache.org/viewvc?rev=1436614&view=rev
Log:
Falcon: Re-enabled the six AIR-based tests that I had previously disabled with @Ignore. They compile with no problems when they can find airglobal.swc.

Made Falcon's Ant script copy airglobal.swc when it copies playerglobal.swc during copy.sdk.

Modified:
    flex/falcon/trunk/compiler.tests/functional-tests/f/SDKSWCTests.java
    flex/falcon/trunk/compiler/build.xml

Modified: flex/falcon/trunk/compiler.tests/functional-tests/f/SDKSWCTests.java
URL: http://svn.apache.org/viewvc/flex/falcon/trunk/compiler.tests/functional-tests/f/SDKSWCTests.java?rev=1436614&r1=1436613&r2=1436614&view=diff
==============================================================================
--- flex/falcon/trunk/compiler.tests/functional-tests/f/SDKSWCTests.java (original)
+++ flex/falcon/trunk/compiler.tests/functional-tests/f/SDKSWCTests.java Mon Jan 21 20:51:57 2013
@@ -105,14 +105,12 @@ public class SDKSWCTests
 		compileSWC("advancedgrids");
 	}
 	
-	@Ignore
 	@Test
 	public void airframeworkSWC()
 	{
 		compileSWC("airframework");
 	}
 	
-	@Ignore
 	@Test
 	public void airsparkSWC()
 	{
@@ -143,14 +141,12 @@ public class SDKSWCTests
 		compileSWC("automation_agent");
 	}
 	
-	@Ignore
 	@Test
 	public void automation_airSWC()
 	{
 		compileSWC("automation_air");
 	}
 	
-	@Ignore
 	@Test
 	public void automation_airsparkSWC()
 	{
@@ -206,7 +202,6 @@ public class SDKSWCTests
 		compileSWC("halo");
 	}
 	
-	@Ignore
 	@Test
 	public void mobilecomponentsSWC()
 	{
@@ -273,7 +268,6 @@ public class SDKSWCTests
 		compileSWC("tool");
 	}	
 
-	@Ignore
 	@Test
 	public void tool_airSWC()
 	{

Modified: flex/falcon/trunk/compiler/build.xml
URL: http://svn.apache.org/viewvc/flex/falcon/trunk/compiler/build.xml?rev=1436614&r1=1436613&r2=1436614&view=diff
==============================================================================
--- flex/falcon/trunk/compiler/build.xml (original)
+++ flex/falcon/trunk/compiler/build.xml Mon Jan 21 20:51:57 2013
@@ -790,6 +790,7 @@
             </fileset>
         </copy>
         <copy file="${env.PLAYERGLOBAL_HOME}/11.1/playerglobal.swc" todir="${sdk}/frameworks/libs/player/11.1"/>
+        <copy file="${env.AIR_HOME}/frameworks/libs/air/airglobal.swc" todir="${sdk}/frameworks/libs/air"/>
         <!-- Create an env.properties file that tells the compiler's configuration system how to expand {playerglobalHome} and {airHome} -->
         <echo message="env.PLAYERGLOBAL_HOME=${sdk}/frameworks/libs/player${line.separator}" file="${sdk}/env.properties"/>
         <echo message="env.AIR_HOME=${sdk}${line.separator}" file="${sdk}/env.properties" append="true"/>