You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ek...@apache.org on 2005/09/09 18:28:17 UTC

svn commit: r279810 - in /beehive/trunk: controls/build.xml wsm/build.xml wsm/test/build.xml

Author: ekoneil
Date: Fri Sep  9 09:28:12 2005
New Revision: 279810

URL: http://svn.apache.org/viewcvs?rev=279810&view=rev
Log:
Add "drt" and "bvt" targets to the top-level WSM and Controls Ant builds.

Now that they're doc'ed, might as well put them there.  :)

BB: self
Tests: Beehive DRT pass


Modified:
    beehive/trunk/controls/build.xml
    beehive/trunk/wsm/build.xml
    beehive/trunk/wsm/test/build.xml

Modified: beehive/trunk/controls/build.xml
URL: http://svn.apache.org/viewcvs/beehive/trunk/controls/build.xml?rev=279810&r1=279809&r2=279810&view=diff
==============================================================================
--- beehive/trunk/controls/build.xml (original)
+++ beehive/trunk/controls/build.xml Fri Sep  9 09:28:12 2005
@@ -263,8 +263,12 @@
     <!-- ==================================================================== -->
     <!-- drt -->
     <!-- ==================================================================== -->
-    <target name="drt" depends="deploy">
-        <ant dir="test" target="checkin.tests" inheritAll="false"/>
+    <target name="drt">
+        <ant dir="test" target="drt" inheritAll="false"/>
+    </target>
+
+    <target name="bvt">
+        <ant dir="test" target="bvt" inheritAll="false"/>
     </target>
 
 </project>

Modified: beehive/trunk/wsm/build.xml
URL: http://svn.apache.org/viewcvs/beehive/trunk/wsm/build.xml?rev=279810&r1=279809&r2=279810&view=diff
==============================================================================
--- beehive/trunk/wsm/build.xml (original)
+++ beehive/trunk/wsm/build.xml Fri Sep  9 09:28:12 2005
@@ -251,8 +251,12 @@
     <!-- ==================================================================== -->
     <!-- Run the WSM tests                                                    -->
     <!-- ==================================================================== -->
-    <target name="drt" description="Run the WSM tests">
+    <target name="drt" description="Run the WSM DRTs">
         <ant dir="test" target="drt" inheritAll="false"/>
+    </target>
+
+    <target name="bvt" description="Run the WSM BVTs">
+        <ant dir="test" target="bvt" inheritAll="false"/>
     </target>
 
 </project>

Modified: beehive/trunk/wsm/test/build.xml
URL: http://svn.apache.org/viewcvs/beehive/trunk/wsm/test/build.xml?rev=279810&r1=279809&r2=279810&view=diff
==============================================================================
--- beehive/trunk/wsm/test/build.xml (original)
+++ beehive/trunk/wsm/test/build.xml Fri Sep  9 09:28:12 2005
@@ -78,6 +78,8 @@
         <echo message="----------------------------------------------------------------"/>
     </target>
 
+    <target name="bvt" depends="drt"/>
+
     <target name="drt">
         <echo message="--------------------------------------------------"/>
         <echo message="|         WSM DRT starting                       |"/>