Author: rich
Date: Wed Aug 25 17:56:11 2004
New Revision: 37052
Modified:
incubator/beehive/trunk/netui/test/ant/testRecorder.xml
incubator/beehive/trunk/netui/test/webapps/drt/build.xml
Log:
Modification to my last checkin. Make the generic test target in
testRecorder.xml continue to call back to the "start" target on the caller.
Enable asserts in the "start" target in the drt app.
DRT/BVT: netui (WinXP)
BB: self (linux)
Modified: incubator/beehive/trunk/netui/test/ant/testRecorder.xml
==============================================================================
--- incubator/beehive/trunk/netui/test/ant/testRecorder.xml (original)
+++ incubator/beehive/trunk/netui/test/ant/testRecorder.xml Wed Aug 25
17:56:11 2004
@@ -90,7 +90,7 @@
<echo>Start a NetUI test server</echo>
<parallel>
- <ant target="start.with.asserts" antfile="${app.build.file}"
inheritAll="false"/>
+ <ant target="start" antfile="${app.build.file}"
inheritAll="false"/>
<sequential>
<echo>Wait for server to start at URL: ${waitfor.url}</echo>
Modified: incubator/beehive/trunk/netui/test/webapps/drt/build.xml
==============================================================================
--- incubator/beehive/trunk/netui/test/webapps/drt/build.xml (original)
+++ incubator/beehive/trunk/netui/test/webapps/drt/build.xml Wed Aug 25
17:56:11 2004
@@ -179,7 +179,7 @@
<!-- Targets for starting / stopping a server -->
<!-- -->
<!-- ================================================================ -->
- <target name="start" description="Start server">
+ <target name="start.without.asserts" description="Start server without
asserts enabled for org.apache.beehive.netui">
<ant antfile="${runTomcat.ant}" target="start" inheritAll="false"/>
</target>
@@ -187,7 +187,7 @@
<ant antfile="${runTomcat.ant}" target="start.with.shmem"
inheritAll="false"/>
</target>
- <target name="start.with.asserts" description="Start server with asserts
enabled for org.apache.beehive.netui">
+ <target name="start" description="Start server with asserts enabled for
org.apache.beehive.netui">
<ant antfile="${runTomcat.ant}" target="start" inheritAll="false">
<property name="java.options"
value="-ea:org.apache.beehive.netui..."/>
</ant>