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 2008/03/04 12:53:20 UTC

svn commit: r633438 - in /harmony/enhanced/buildtest/trunk/infra: build.xml scripts/main.xml

Author: smishura
Date: Tue Mar  4 03:53:18 2008
New Revision: 633438

URL: http://svn.apache.org/viewvc?rev=633438&view=rev
Log:
Remove install targets - they became obsolete

Modified:
    harmony/enhanced/buildtest/trunk/infra/build.xml
    harmony/enhanced/buildtest/trunk/infra/scripts/main.xml

Modified: harmony/enhanced/buildtest/trunk/infra/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/buildtest/trunk/infra/build.xml?rev=633438&r1=633437&r2=633438&view=diff
==============================================================================
--- harmony/enhanced/buildtest/trunk/infra/build.xml (original)
+++ harmony/enhanced/buildtest/trunk/infra/build.xml Tue Mar  4 03:53:18 2008
@@ -35,37 +35,6 @@
     <property file="${framework.local.configuration.file}"/>
 
     <!-- ================================================================== 
-                      Framework Installation Functionality
-         ================================================================== -->
-    <target name="install" description="installs the BTI on local workstation"
-            depends="update-framework, create-local-configuration">
-    </target>
-
-    <target name="update-framework" 
-            unless="framework.parameters.repository.noupdate">
-        <!-- do update of framework implementation and test suite 
-             integration scripts -->
-        <exec executable="svn" dir="${root.dir}" failonerror="true">
-            <arg line="update ${scripts.dir} ${adaptors.dir}"/>
-        </exec>
-    </target>
-
-    <condition property="framework.local.config.exists">
-        <available file="${framework.local.configuration.file}"/>
-    </condition>
-
-    <target name="create-local-configuration"
-            unless="framework.local.config.exists">
-        <!-- create the file for local BTI configuration -->
-        <echo file="${framework.local.configuration.file}">#
-# Any BTI framework local configuration properties 
-# should be specified in this file. 
-# For more information on which parameters can be configured see
-#     ${scripts.dir}/parameters.xml
-</echo>
-    </target>
-
-    <!-- ================================================================== 
                       Import BTI Framework command line UI
          ================================================================== -->
     <property name="framework.main.file" 

Modified: harmony/enhanced/buildtest/trunk/infra/scripts/main.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/buildtest/trunk/infra/scripts/main.xml?rev=633438&r1=633437&r2=633438&view=diff
==============================================================================
--- harmony/enhanced/buildtest/trunk/infra/scripts/main.xml (original)
+++ harmony/enhanced/buildtest/trunk/infra/scripts/main.xml Tue Mar  4 03:53:18 2008
@@ -51,7 +51,7 @@
                          Framework Setup Functionality
          ================================================================== -->
     <target name="setup"
-            depends="check-install, setup-framework, -save-suites-configuration,
+            depends="create-local-configuration, setup-framework, -save-suites-configuration,
                         load-required-parameters, save-required-parameters"/>
 
     <target name="-save-suites-configuration" depends="define-ant-contrib">
@@ -73,21 +73,19 @@
         </for>
     </target>
 
-    <target name="check-install">
-        <fail>
-            <condition>
-                <not>
-                    <and>
-                        <available file="${adaptors.dir}" type="dir"/>
-                        <available file="${scripts.dir}" type="dir"/>
-                        <available file="${framework.implementation.file}"/>
-                        <available file="${framework.local.configuration.file}"/>
-                    </and>
-                </not>
-            </condition>
-Could not found some of the framework components.
-Please, do buildtest install first.
-        </fail>
+    <condition property="framework.local.config.exists">
+        <available file="${framework.local.configuration.file}"/>
+    </condition>
+
+    <target name="create-local-configuration"
+            unless="framework.local.config.exists">
+        <!-- create the file for local BTI configuration -->
+        <echo file="${framework.local.configuration.file}">#
+# Any BTI framework local configuration properties 
+# should be specified in this file. 
+# For more information on which parameters can be configured see
+#     ${scripts.dir}/parameters.xml
+</echo>
     </target>
 
     <!-- ==================================================================