[jboss-cvs] jboss-portal/wsrp ...

Chris Laprun chris.laprun at jboss.com
Tue Aug 8 16:54:54 EDT 2006


  User: claprun 
  Date: 06/08/08 16:54:54

  Modified:    wsrp     build.xml
  Log:
  - Added undeploy targets for tests.
  - Increased time out.
  - Removed duplicate definition of test.reports.
  
  Revision  Changes    Path
  1.87      +15 -3     jboss-portal/wsrp/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/wsrp/build.xml,v
  retrieving revision 1.86
  retrieving revision 1.87
  diff -u -b -r1.86 -r1.87
  --- build.xml	8 Aug 2006 04:34:38 -0000	1.86
  +++ build.xml	8 Aug 2006 20:54:54 -0000	1.87
  @@ -8,7 +8,7 @@
      <!ENTITY targets    SYSTEM "../tools/etc/buildfragments/targets.ent">
      ]>
   
  -<!-- $Id: build.xml,v 1.86 2006/08/08 04:34:38 claprun Exp $ -->
  +<!-- $Id: build.xml,v 1.87 2006/08/08 20:54:54 claprun Exp $ -->
   
   <!--+======================================================================+-->
   <!--| JBoss Portal (The OpenSource Portal) Build File                      |-->
  @@ -278,12 +278,24 @@
         <deploy file="${build.lib}/test-wsrp-producer.sar" config="default"/>
      </target>
   
  +   <target name="undeploy-producer-test" description="Undeploy services needed to test the WSRP Producer."
  +           depends="init">
  +      <require file="${jboss.deploy.dir}"/>
  +      <undeploy file="${build.lib}/test-wsrp-producer.sar" config="default"/>
  +   </target>
  +
      <target name="deploy-consumer-test" description="Deploy services needed to test the WSRP Consumer."
              depends="package-consumer-test">
         <require file="${jboss.deploy.dir}"/>
         <deploy file="${build.lib}/test-wsrp-consumer.sar" config="default"/>
      </target>
   
  +   <target name="undeploy-consumer-test" description="Undeploy services needed to test the WSRP Consumer."
  +           depends="init">
  +      <require file="${jboss.deploy.dir}"/>
  +      <undeploy file="${build.lib}/test-wsrp-consumer.sar" config="default"/>
  +   </target>
  +
      <!-- ================================================================== -->
      <!-- Tests                                                              -->
      <!-- ================================================================== -->
  @@ -473,7 +485,7 @@
               <path refid="ws.classpath"/>
            </x-classpath>
         </execute-tests>
  -      <antcall target="undeploy"/>
  +      <antcall target="undeploy-producer-test"/>
       </target>
   
      <!--WSRP Consumer implementation tests-->
  @@ -498,7 +510,7 @@
               <path refid="ws.classpath"/>
            </x-classpath>
         </execute-tests>
  -      <antcall target="undeploy"/>
  +      <antcall target="undeploy-consumer-test"/>
      </target>
   
      <!--WSRP Deployer implementation tests-->
  
  
  



More information about the jboss-cvs-commits mailing list