You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mirae-dev@ws.apache.org by jk...@apache.org on 2005/02/14 11:19:05 UTC

svn commit: r153760 - webservices/mirae/trunk/build.xml

Author: jkumaran
Date: Mon Feb 14 02:19:03 2005
New Revision: 153760

URL: http://svn.apache.org/viewcvs?view=rev&rev=153760
Log:
Fixed problem in running ant test in windows

Modified:
    webservices/mirae/trunk/build.xml

Modified: webservices/mirae/trunk/build.xml
URL: http://svn.apache.org/viewcvs/webservices/mirae/trunk/build.xml?view=diff&r1=153759&r2=153760
==============================================================================
--- webservices/mirae/trunk/build.xml (original)
+++ webservices/mirae/trunk/build.xml Mon Feb 14 02:19:03 2005
@@ -149,7 +149,7 @@
 
     <target name="startServer">
         <antcall target="start.tomcat"/>
-        <sleep seconds="5"/>
+        <!--        <sleep seconds=""/>-->
     </target>
 
     <!-- create javadocs -->
@@ -219,9 +219,11 @@
     <target name="test" depends="mainbuild">
         <parallel>
             <antcall target="startServer"/>
-            <antcall target="functional-test"/>
-            <antcall target="junit"/>
-            <antcall target="stopServer"/>
+            <sequential>
+                <antcall target="functional-test"/>
+                <antcall target="junit"/>
+                <antcall target="stopServer"/>
+            </sequential>
         </parallel>
 
     </target>