You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cf...@apache.org on 2012/12/13 17:06:46 UTC

svn commit: r1421356 - /incubator/flex/sdk/branches/develop/mustella/build.xml

Author: cframpton
Date: Thu Dec 13 16:06:45 2012
New Revision: 1421356

URL: http://svn.apache.org/viewvc?rev=1421356&view=rev
Log:
Add failonerror=false to cleanswfs delete.

Modified:
    incubator/flex/sdk/branches/develop/mustella/build.xml

Modified: incubator/flex/sdk/branches/develop/mustella/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/build.xml?rev=1421356&r1=1421355&r2=1421356&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/build.xml (original)
+++ incubator/flex/sdk/branches/develop/mustella/build.xml Thu Dec 13 16:06:45 2012
@@ -63,6 +63,10 @@
     <property name="previous.generated.testfiles" value="**/*.swf,**/*.output,**/SWFs/${apollo_transform_prefix}*.mxml,**/swfs/${apollo_transform_prefix}*.mxml,**/SWFs/${apollo_transform_prefix2}*.mxml,**/swfs/${apollo_transform_prefix2}*.mxml" />
     
     <property name="sdk.mustella.dir" value="${mustella.dir}/tests" />
+    <!-- 
+        This directory doesn't exist in the source kit so make it although it would be better
+        to make sure no targets that the source kit uses expect this directory to exist.
+    -->
     <mkdir dir="${sdk.mustella.dir}" />
 
     <property name="root.dir" value="${basedir}/.."/>
@@ -879,7 +883,7 @@
             excludes="${sdk.mustella.excludes},${other.mustella.excludes}" />
 
     <target name="clean" depends="cleanswfs" description="--> cleanup old report and actual files">
-        <echo message="Deleting old results and files from previous testsuite build"/>
+        <echo message="Deleting old results and files from previous testsuite build."/>
         <delete dir="${mustellagen.dir}" quiet="true"/>
         <!-- get rid of old runid prop file, in case we don't create a new one -->
         <delete verbose="true" file="${mustella.dir}/tests/runid.properties" failonerror="false" quiet="true" />
@@ -909,8 +913,8 @@
     </target>
 
     <target name="cleanswfs" unless="noclean.set" description="--> deletes all swfs and tag files">
-        <delete quiet="true">
-            <fileset dir="${sdk.mustella.dir}" casesensitive="false">
+        <delete quiet="true" failonerror="false">
+            <fileset dir="${sdk.mustella.dir}" casesensitive="false" >
                 <include name="${previous.generated.testfiles}"/>
                 <include name="**/*.sh.*.log"/>
                 <include name="**/swfs/**/*.log"/>