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/05/21 12:24:53 UTC

svn commit: r658619 - /harmony/enhanced/buildtest/trunk/infra/adaptors/hdk_by_hdk/adaptor.xml

Author: smishura
Date: Wed May 21 03:24:52 2008
New Revision: 658619

URL: http://svn.apache.org/viewvc?rev=658619&view=rev
Log:
Formatting

Modified:
    harmony/enhanced/buildtest/trunk/infra/adaptors/hdk_by_hdk/adaptor.xml

Modified: harmony/enhanced/buildtest/trunk/infra/adaptors/hdk_by_hdk/adaptor.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/buildtest/trunk/infra/adaptors/hdk_by_hdk/adaptor.xml?rev=658619&r1=658618&r2=658619&view=diff
==============================================================================
--- harmony/enhanced/buildtest/trunk/infra/adaptors/hdk_by_hdk/adaptor.xml (original)
+++ harmony/enhanced/buildtest/trunk/infra/adaptors/hdk_by_hdk/adaptor.xml Wed May 21 03:24:52 2008
@@ -9,21 +9,22 @@
      
          http://www.apache.org/licenses/LICENSE-2.0
      
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License. -->
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License. -->
 
 <project name="hdk_by_hdk" default="run" basedir=".">
 
-    <property environment="env"/>
+    <property environment="env" />
 
     <!-- workaround: properties are case sensitive -->
     <!-- even the env. vars on OS are not          -->
     <property name="env.PATH" value="${env.Path}" />
 
-    <property name="my.path" value="${tested.jdk}/bin${path.separator}${env.PATH}"/>
+    <property name="my.path"
+              value="${tested.jdk}/bin${path.separator}${env.PATH}" />
 
     <!-- if the suite is run against snapshot -->
     <condition property="is.snapshot">
@@ -40,27 +41,28 @@
     </target>
 
     <target name="-get-revision" if="is.snapshot">
-        <property file="${snapshot.svn.revision.file}"/>
-        <property name="co.target" value="-r${svn.revision}"/>
+        <property file="${snapshot.svn.revision.file}" />
+        <property name="co.target" value="-r${svn.revision}" />
     </target>
 
     <target name="run" depends="-get-revision">
-        <echo message="Checkout HDK trunk ${co.target} into ${hdk_by_hdk.parameters.required.trunk.dir}"/>
-        <property name="co.target" value=""/>
-        
-        <exec executable="svn" dir="${hdk_by_hdk.parameters.required.trunk.dir}" 
-            failonerror="true">
+        <echo message="Checkout HDK trunk ${co.target} into ${hdk_by_hdk.parameters.required.trunk.dir}" />
+        <property name="co.target" value="" />
+
+        <exec executable="svn"
+              dir="${hdk_by_hdk.parameters.required.trunk.dir}"
+              failonerror="true">
             <arg line="up --ignore-externals ${co.target} ." />
         </exec>
 
         <exec-ant dir="${trunk.dir}"
                   targets="rebuild"
                   javaVM="${tested.jdk}/bin/java">
-            <jvmarg line="-Xmx800M -Dtarget.dir=${target.dir}"/>
-            <env key="JAVA_HOME" value="${tested.jdk}"/>
-            <env key="PATH" value="${my.path}"/>
-            <sysproperty key="keep.working" value="true"/>
-            <sysproperty key="auto.fetch" value="true"/>
+            <jvmarg line="-Xmx800M -Dtarget.dir=${target.dir}" />
+            <env key="JAVA_HOME" value="${tested.jdk}" />
+            <env key="PATH" value="${my.path}" />
+            <sysproperty key="keep.working" value="true" />
+            <sysproperty key="auto.fetch" value="true" />
         </exec-ant>
     </target>