You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2012/06/07 09:53:58 UTC

svn commit: r1347456 - /incubator/flex/trunk/build.xml

Author: jmclean
Date: Thu Jun  7 07:53:57 2012
New Revision: 1347456

URL: http://svn.apache.org/viewvc?rev=1347456&view=rev
Log:
Changed exec tasks arg lines to use "value=" rather than "line=" so that paths with spaces are accepted

Modified:
    incubator/flex/trunk/build.xml

Modified: incubator/flex/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/build.xml?rev=1347456&r1=1347455&r2=1347456&view=diff
==============================================================================
--- incubator/flex/trunk/build.xml (original)
+++ incubator/flex/trunk/build.xml Thu Jun  7 07:53:57 2012
@@ -1187,7 +1187,7 @@
         <!-- run the component smoke  -->
         <echo message="launching player and swf"/>
         <exec executable="${flash.player}" dir="${basedir}/frameworks" failonerror="true">
-            <arg line="${basedir}/frameworks/tests/basicTests/BasicTests.swf"/>
+            <arg value="${basedir}/frameworks/tests/basicTests/BasicTests.swf"/>
         </exec>
         <!-- halt if there was an error -->
         <antcall target="mustellaresultsparser"/>
@@ -1240,7 +1240,7 @@
         <!-- run the component smoke  -->
         <echo message="launching player and swf"/>
         <exec executable="${flash.player}" dir="${basedir}/frameworks" failonerror="true">
-            <arg line="${basedir}/frameworks/tests/componentSmoke/componentSmoke2.swf"/>
+            <arg value="${basedir}/frameworks/tests/componentSmoke/componentSmoke2.swf"/>
         </exec>
         <!-- halt if there was an error -->
         <antcall target="mustellaresultsparser"/>
@@ -1266,7 +1266,7 @@
         <!-- run the component smoke  -->
         <echo message="launching player and swf"/>
         <exec executable="${flash.player}" dir="${basedir}/frameworks">
-            <arg line="${basedir}/frameworks/tests/checkinapp/checkinapp.swf"/>
+            <arg value="${basedir}/frameworks/tests/checkinapp/checkinapp.swf"/>
         </exec>
         <!-- halt if there was an error -->
         <antcall target="mustellaresultsparser"/>
@@ -1288,7 +1288,7 @@
         <!-- run the component smoke  -->
         <echo message="launching player and swf"/>
         <exec executable="${flash.player}" dir="${basedir}/frameworks">
-            <arg line="${basedir}/frameworks/tests/graphics/GraphicTags_checkin.swf"/>
+            <arg value="${basedir}/frameworks/tests/graphics/GraphicTags_checkin.swf"/>
         </exec>
         <!-- halt if there was an error -->
         <antcall target="mustellaresultsparser"/>
@@ -1310,7 +1310,7 @@
         <!-- run the component smoke  -->
         <echo message="launching player and swf"/>
         <exec executable="${flash.player}" dir="${basedir}/frameworks">
-            <arg line="${basedir}/frameworks/tests/spark/sparkTest.swf"/>
+            <arg value="${basedir}/frameworks/tests/spark/sparkTest.swf"/>
         </exec>
         <!-- halt if there was an error -->
         <antcall target="mustellaresultsparser"/>
@@ -1332,7 +1332,7 @@
         <!-- run the component smoke  -->
         <echo message="launching player and swf"/>
         <exec executable="${flash.player}" dir="${basedir}/frameworks">
-            <arg line="${basedir}/frameworks/tests/fxgCompile/fxgCompileTest.swf"/>
+            <arg value="${basedir}/frameworks/tests/fxgCompile/fxgCompileTest.swf"/>
         </exec>
         <!-- halt if there was an error -->
         <antcall target="mustellaresultsparser"/>
@@ -1428,7 +1428,8 @@
             <classpath>
                 <pathelement location="${basedir}/tools/dependencychecker"/>
             </classpath>
-            <arg line="${basedir}/frameworks/libs/framework.swc frameworkSwcExceptionsList.txt"/>
+            <arg value="${basedir}/frameworks/libs/framework.swc" />
+        	<arg value="frameworkSwcExceptionsList.txt"/>
         </java>
     </target>