User: patriot1burke
  Date: 02/01/09 15:49:34

  Modified:    .        build.xml
  Log:
  tests a clustered configuration with only 1 VM,  Basically inherits everything
  from testbean
  
  Revision  Changes    Path
  1.57      +20 -0     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- build.xml 2002/01/09 21:49:11     1.56
  +++ build.xml 2002/01/09 23:49:33     1.57
  @@ -12,7 +12,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.56 2002/01/09 21:49:11 schaefera Exp $ -->
  +<!-- $Id: build.xml,v 1.57 2002/01/09 23:49:33 patriot1burke Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -422,6 +422,7 @@
                      _jars-jrmp,
                      _jars-threading,
                      _jars-testbean,
  +                   _jars-testbeancluster,
                      _jars-perf,
                      _jars-web,
                      _jars-bench,
  @@ -1127,6 +1128,24 @@
       </jar>
     </target>
   
  +  <!-- testbeancluster test -->
  +  <target name="_jars-testbeancluster" depends="_jars-testbean">
  +    <mkdir dir="${build.lib}"/>
  +
  +    <!-- build testbeancluster.jar -->
  +    <jar jarfile="${build.lib}/testbeancluster.jar">
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.application.classes"/>
  +        <include name="org/jboss/test/testbean/interfaces/**"/>
  +        <include name="org/jboss/test/testbean/bean/**"/>
  +        <include name="org/somepackage/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/testbeancluster">
  +        <include name="**/*.xml"/>
  +      </fileset>
  +    </jar>
  +  </target>
  +
     <!-- perf test -->
     <target name="_jars-perf">
       <mkdir dir="${build.lib}"/>
  @@ -1608,6 +1627,7 @@
   
             <!-- Exclude XAUnitTestCase until it can be updated -->
             <exclude name="**/test/xa/test/XAUnitTestCase.class"/>
  +
             <!-- Exclude JSR77, it is run in its own target with a security manager 
-->
             <exclude name="**/test/management/test/**UnitTestCase.class"/>
           </fileset>
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to