[jboss-cvs] Picketlink SVN: r848 - integration-tests/trunk/ant-scripts.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Mar 24 11:40:32 EDT 2011


Author: anil.saldhana at jboss.com
Date: 2011-03-24 11:40:32 -0400 (Thu, 24 Mar 2011)
New Revision: 848

Modified:
   integration-tests/trunk/ant-scripts/ant-build.xml
Log:
before starting jbas and tomcat, run stop first so that any rogue processes are killed

Modified: integration-tests/trunk/ant-scripts/ant-build.xml
===================================================================
--- integration-tests/trunk/ant-scripts/ant-build.xml	2011-03-23 20:13:30 UTC (rev 847)
+++ integration-tests/trunk/ant-scripts/ant-build.xml	2011-03-24 15:40:32 UTC (rev 848)
@@ -106,7 +106,7 @@
    <copy file="${basedir}/../picketlink-sts-tests/src/test/resources/sts-config.properties" todir="${JBAS6_DEPLOY}/../conf/"/>
   </target>
     
-  <target name="start-jboss">
+  <target name="start-jboss" depends="stop-jboss">
     <echo>Starting Local 8080 </echo>
       <exec executable="${jbossas}/bin/run.sh" 
             osfamily="unix" spawn="true" />
@@ -139,7 +139,7 @@
     </antcall>
   </target>
 
-  <target name="start-tomcat6" depends="copy-picketlink-tomcat6" >
+  <target name="start-tomcat6" depends="copy-picketlink-tomcat6,stop-tomcat6" >
     <echo>Starting Local 8080 </echo>
       <exec executable="${TOMCAT6_DEPLOY}/../bin/startup.sh" 
             osfamily="unix" spawn="true" />



More information about the jboss-cvs-commits mailing list