You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2008/07/01 12:13:15 UTC

svn commit: r673045 - /harmony/enhanced/classlib/trunk/modules/lang-management/build.xml

Author: hindessm
Date: Tue Jul  1 03:13:14 2008
New Revision: 673045

URL: http://svn.apache.org/viewvc?rev=673045&view=rev
Log:
Remove inefficient antcall tasks.

Modified:
    harmony/enhanced/classlib/trunk/modules/lang-management/build.xml

Modified: harmony/enhanced/classlib/trunk/modules/lang-management/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/lang-management/build.xml?rev=673045&r1=673044&r2=673045&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/lang-management/build.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/lang-management/build.xml Tue Jul  1 03:13:14 2008
@@ -106,10 +106,8 @@
         </jar>
     </target>
 
-    <target name="compile-tests">
-        <antcall target="compile-tests-api" />
-        <antcall target="compile-tests-impl" />
-    </target>
+    <target name="compile-tests"
+            depends="compile-tests-api,compile-tests-impl" />
 
     <target name="compile-tests-api">
         <echo message="Compiling LANG-MANAGEMENT API tests" />
@@ -168,10 +166,7 @@
                              result="${lang-management.exclude.file}"/>
     </target>
 
-    <target name="run-tests">
-        <antcall target="run-tests-api" />
-        <antcall target="run-tests-impl" />
-    </target>
+    <target name="run-tests" depends="run-tests-api,run-tests-impl" />
 
     <target name="run-tests-api">
         <mkdir dir="${hy.tests.reports}" />