Author: kylem Date: Mon Dec 13 10:36:34 2004 New Revision: 111741 URL: http://svn.apache.org/viewcvs?view=rev&rev=111741 Log: Ensure that the db control sample (upon which certain tests seems to have a dependency) gets cleaned if a controls test clean takes place.
Modified: incubator/beehive/trunk/controls/test/build.xml Modified: incubator/beehive/trunk/controls/test/build.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/controls/test/build.xml?view=diff&rev=111741&p1=incubator/beehive/trunk/controls/test/build.xml&r1=111740&p2=incubator/beehive/trunk/controls/test/build.xml&r2=111741 ============================================================================== --- incubator/beehive/trunk/controls/test/build.xml (original) +++ incubator/beehive/trunk/controls/test/build.xml Mon Dec 13 10:36:34 2004 @@ -125,7 +125,7 @@ <echo message="----------------------------------------------------------------"/> </target> - <target name="clean"> + <target name="clean" depends="dbControl-clean" > <delete dir="${build.dir}"/> <delete dir="${test.logs}"/> <delete dir="${mantis.logs}"/> @@ -165,6 +165,14 @@ dir="${db.control.dir}" antfile="build.xml" target="build" + inheritall="false"/> + </target> + + <target name="dbControl-clean"> + <ant + dir="${db.control.dir}" + antfile="build.xml" + target="clean" inheritall="false"/> </target>
