Author: ekoneil
Date: Wed Feb 16 13:56:12 2005
New Revision: 154086
URL: http://svn.apache.org/viewcvs?view=rev&rev=154086
Log:
Two fixes for the distribution test infrastructure.
- fix the distribution testing to work with the recent test recorder changes
- add the tldx files into the test-dist
Contributed by Julie Zhuo
BB: self
DRT: Beehive pass
Modified:
incubator/beehive/trunk/netui/test/dist-test/ant/testWebBuild.xml
incubator/beehive/trunk/netui/test/dist-test/build.xml
Modified: incubator/beehive/trunk/netui/test/dist-test/ant/testWebBuild.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/dist-test/ant/testWebBuild.xml?view=diff&r1=154085&r2=154086
==============================================================================
--- incubator/beehive/trunk/netui/test/dist-test/ant/testWebBuild.xml (original)
+++ incubator/beehive/trunk/netui/test/dist-test/ant/testWebBuild.xml Wed Feb
16 13:56:12 2005
@@ -69,6 +69,8 @@
<target name="drt" description="Run the drt suite with full server start /
stop support.">
<echo message="Test.dir: ${test.dir}"/>
+ <antcall target="clean"/>
+ <antcall target="build"/>
<ant dir="${test.dir}" antfile="${test.dir}/ant/testRecorder.xml"
inheritAll="false" target="server.test">
<property name="waitfor.url" value="${server.root.url}"/>
<property name="suite.name" value="drt"/>
@@ -86,6 +88,8 @@
</target>
<target name="bvt" description="Run the bvt suite with full server start /
stop support.">
+ <antcall target="clean"/>
+ <antcall target="build"/>
<ant antfile="${test.dir}/ant/testRecorder.xml" inheritAll="false"
target="server.test">
<property name="waitfor.url" value="${server.root.url}"/>
<property name="suite.name" value="bvt"/>
Modified: incubator/beehive/trunk/netui/test/dist-test/build.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/dist-test/build.xml?view=diff&r1=154085&r2=154086
==============================================================================
--- incubator/beehive/trunk/netui/test/dist-test/build.xml (original)
+++ incubator/beehive/trunk/netui/test/dist-test/build.xml Wed Feb 16 13:56:12
2005
@@ -71,5 +71,9 @@
<fileset dir="${app.dir}/drt/testRecorder/tests"/>
</copy>
+ <copy todir="${test.dist.base.dir}/beehive-test-dist/netui/tldx">
+ <fileset dir="${build.dir}/lib" includes="*.tldx"/>
+ </copy>
+
</target>
</project>