You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by sm...@apache.org on 2007/10/05 09:26:39 UTC

svn commit: r582101 - /harmony/enhanced/buildtest/branches/2.0/tests/eut/build.xml

Author: smishura
Date: Fri Oct  5 00:26:36 2007
New Revision: 582101

URL: http://svn.apache.org/viewvc?rev=582101&view=rev
Log:
Eclipse unit tests: fix targets dependencies for generation 'properties.file'

Modified:
    harmony/enhanced/buildtest/branches/2.0/tests/eut/build.xml

Modified: harmony/enhanced/buildtest/branches/2.0/tests/eut/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/buildtest/branches/2.0/tests/eut/build.xml?rev=582101&r1=582100&r2=582101&view=diff
==============================================================================
--- harmony/enhanced/buildtest/branches/2.0/tests/eut/build.xml (original)
+++ harmony/enhanced/buildtest/branches/2.0/tests/eut/build.xml Fri Oct  5 00:26:36 2007
@@ -257,7 +257,7 @@
 
     <target name="configure.properties.file"
         description="Delete old properties file and specify the path to JRE under test and other properties"
-        depends="delete.properties.file,configure.properties.file.common,configure.properties.file.teamcvs">
+        depends="configure.properties.file.common,configure.properties.file.teamcvs">
     </target>
 
      <target name="delete.properties.file"
@@ -266,6 +266,7 @@
     </target>
 
     <target name="configure.properties.file.teamcvs"
+            depends="delete.properties.file"
         description="Specify CVS settings for Team CVS tests"
         if="cvs.settings.specified">
         <echo file="${eut.work.dir}/properties.file" append="true">
@@ -277,8 +278,8 @@
     </target>
 
     <target name="configure.properties.file.common"
+            depends="delete.properties.file"
         description="Specify the path to JRE under test and other properties">
-        <delete file="${eut.work.dir}/properties.file" failonerror="false"/>
         <echo file="${eut.work.dir}/properties.file" append="true">
             J2SE-5.0=${test.jre.home.path}/bin/java
             jvm=${test.jre.home.path}/bin/java