You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bi...@apache.org on 2005/12/11 00:59:58 UTC

svn commit: r355814 - /tomcat/build/tc5.5.x/build.xml

Author: billbarker
Date: Sat Dec 10 15:59:53 2005
New Revision: 355814

URL: http://svn.apache.org/viewcvs?rev=355814&view=rev
Log:
Make the startup delay on the tester overridable in build.properties

Modified:
    tomcat/build/tc5.5.x/build.xml

Modified: tomcat/build/tc5.5.x/build.xml
URL: http://svn.apache.org/viewcvs/tomcat/build/tc5.5.x/build.xml?rev=355814&r1=355813&r2=355814&view=diff
==============================================================================
--- tomcat/build/tc5.5.x/build.xml (original)
+++ tomcat/build/tc5.5.x/build.xml Sat Dec 10 15:59:53 2005
@@ -71,6 +71,7 @@
   <property name="compile.debug"        value="true" />
   <property name="compile.deprecation"  value="false" />
   <property name="compile.source"       value="1.4" />
+  <property name="tester.delay"         value="8" />
 
   <!-- =================== DETECT: Display configuration ================== -->
   <target name="detect"
@@ -1204,7 +1205,7 @@
 
         <sequential>
             <!-- Let tomcat starts before starting Tester -->
-            <sleep seconds="8"/>
+            <sleep seconds="${tester.delay}"/>
 
             <ant dir="${catalina.home}/tester/dist/bin" antfile="tester.xml"
                  target="all">



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org