| 
      
      
      From: Alexey L. <lou...@us...> - 2003-05-16 13:53:30
       | 
|   User: loubyansky
  Date: 03/05/16 06:53:29
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  added cmp2/fkupdates tests
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.65 +42 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.64
  retrieving revision 1.165.2.65
  diff -u -r1.165.2.64 -r1.165.2.65
  --- build.xml	15 May 2003 15:34:15 -0000	1.165.2.64
  +++ build.xml	16 May 2003 13:53:28 -0000	1.165.2.65
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.64 2003/05/15 15:34:15 loubyansky Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.65 2003/05/16 13:53:28 loubyansky Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -639,6 +639,33 @@
            validatexml="${validatexml}"/>
       </ejbdoclet>
   
  +    <!-- updates of foreign keys mapped to cmp fields -->
  +    <mkdir dir="${build.resources}/cmp2/fkupdates/META-INF"/>
  +    <ejbdoclet destdir="${build.gen-src}"
  +	     ejbspec="2.0"
  +	     excludedtags="@version,@author"
  +             mergedir="${source.etc}/cmp2/fkupdates">
  +      <fileset dir="${source.java}">
  +        <include name="org/jboss/test/cmp2/fkupdates/ejb/*Bean.java"/>
  +      </fileset>
  +      <remoteinterface/>
  +      <localinterface/>
  +      <homeinterface/>
  +      <localhomeinterface/>
  +      <entitypk/>
  +      <utilobject cacheHomes="true" includeGUID="false"/>
  +      <entitycmp/>
  +      <session/>
  +      <deploymentdescriptor
  +         destdir="${build.resources}/cmp2/fkupdates/META-INF"
  +         validatexml="${validatexml}"/>
  +      <jboss
  +         version="3.2"
  +         xmlencoding="UTF-8"
  +         destdir="${build.resources}/cmp2/fkupdates/META-INF"
  +         validatexml="${validatexml}"/>
  +    </ejbdoclet>
  +
       <!-- cmp2 relationship stress tests -->
       <mkdir dir="${build.resources}/cmp2/cmrstress/META-INF"/>
       <ejbdoclet destdir="${build.gen-src}"
  @@ -3300,6 +3327,20 @@
          <include name="org/jboss/test/cmp2/fkstackoverflow/**"/>
         </fileset>
         <fileset dir="${build.resources}/cmp2/fkstackoverflow">
  +       <include name="**/*.*"/>
  +      </fileset>
  +      <zipfileset src="${junitejb.junitejb.lib}/junitejb.jar"
  +        includes="net/**/*.*"/>
  +      <zipfileset src="${junit.junit.lib}/junit.jar"
  +        includes="junit/**/*.*"/>
  +    </jar>
  +
  +    <!-- build cmp2-fkupdates.jar -->
  +    <jar jarfile="${build.lib}/cmp2-fkupdates.jar">
  +      <fileset dir="${build.classes}">
  +       <include name="org/jboss/test/cmp2/fkupdates/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/cmp2/fkupdates">
          <include name="**/*.*"/>
         </fileset>
         <zipfileset src="${junitejb.junitejb.lib}/junitejb.jar"
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-05-18 01:12:06
       | 
|   User: starksm 
  Date: 03/05/17 18:12:05
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Add a _jars-util build target and add expand the scheduler tests
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.66 +40 -3     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.65
  retrieving revision 1.165.2.66
  diff -u -r1.165.2.65 -r1.165.2.66
  --- build.xml	16 May 2003 13:53:28 -0000	1.165.2.65
  +++ build.xml	18 May 2003 01:12:05 -0000	1.165.2.66
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.65 2003/05/16 13:53:28 loubyansky Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.66 2003/05/18 01:12:05 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -321,11 +321,12 @@
         <pathelement path="${jboss.iiop.lib}/jboss-iiop-client.jar"/>
       </path>
   
  -    <!-- Autonumber -->
  +    <!-- Varia -->
       <property name="jboss.varia.root" value="${project.root}/varia/output"/>
       <property name="jboss.varia.lib" value="${jboss.varia.root}/lib"/>
       <path id="jboss.varia.classpath">
         <pathelement path="${jboss.varia.lib}/autonumber-plugin.jar"/>
  +      <pathelement path="${jboss.varia.lib}/scheduler-plugin.jar"/>
       </path>
   
       <!-- The combined dependant module classpath -->
  @@ -1122,7 +1123,8 @@
                      _jars-hellojrmpiiop,
                      _jars-marathon,
                      _jars-entity,
  -                   _jars-classloader">
  +                   _jars-classloader,
  +                   _jars-util">
     </target>
   
     <!--
  @@ -3386,6 +3388,13 @@
         <zipfileset src="${junit.junit.lib}/junit.jar"
            includes="junit/**/*.*"/>
       </jar>
  +
  +    <jar jarfile="${build.lib}/cmp2-perf.jar">
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/cmp2/perf/**"/>
  +      </fileset>
  +      <metainf dir="${build.resources}/cmp2/perf" />
  +    </jar>
     </target>
   
     <!-- exception tests -->
  @@ -3740,6 +3749,34 @@
       </jar>
     </target>
   
  +   <!-- Utility services tests -->
  +   <target name="_jars-util">
  +      <!-- The external scheduler.jar -->
  +      <jar destfile="${build.lib}/scheduler.jar">
  +         <fileset dir="${build.classes}">
  +            <include name="org/jboss/test/util/scheduler/*" />
  +         </fileset>
  +      </jar>
  +      <!-- The scheduler.sar -->
  +      <jar destfile="${build.lib}/scheduler.sar">
  +         <manifest>
  +            <attribute name="Class-Path" value="../../scheduler.jar"/>
  +         </manifest>
  +         <metainf dir="${build.resources}/util/scheduler">
  +            <include name="jboss-service.xml" />
  +         </metainf>
  +      </jar>
  +      <!-- The scheduler.ear -->
  +      <ear destfile="${build.lib}/scheduler.ear"
  +         appxml="${build.resources}/util/scheduler/application.xml">
  +         <metainf dir="${build.resources}/util/scheduler">
  +            <include name="jboss-app.xml" />
  +         </metainf>
  +         <fileset dir="${build.lib}">
  +            <include name="scheduler.sar" />
  +         </fileset>
  +      </ear>
  +   </target>
   
     <!-- ================================================================== -->
     <!-- Documents                                                          -->
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-05-18 06:28:08
       | 
|   User: starksm 
  Date: 03/05/17 23:28:07
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Update the build scripts to not refer to the buildmagic entity using the resource url. This allows ant to be used directly as the build scripts are not needed. Also fixed the clean target problem with not being able to delete the jsr77.jar
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.67 +3 -61     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.66
  retrieving revision 1.165.2.67
  diff -u -r1.165.2.66 -r1.165.2.67
  --- build.xml	18 May 2003 01:12:05 -0000	1.165.2.66
  +++ build.xml	18 May 2003 06:28:06 -0000	1.165.2.67
  @@ -1,7 +1,7 @@
   <?xml version="1.0" encoding="UTF-8"?>
   <!DOCTYPE project [
  -  <!ENTITY buildmagic SYSTEM "resource://org/jboss/tools/buildmagic/common.xml">
  -  <!ENTITY mqstress SYSTEM "mqstress.xml">
  +   <!ENTITY buildmagic SYSTEM "../tools/etc/buildmagic/buildmagic.ent">
  +   <!ENTITY mqstress SYSTEM "mqstress.xml">
   ]>
   
   <!-- ====================================================================== -->
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.66 2003/05/18 01:12:05 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.67 2003/05/18 06:28:06 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -3777,64 +3777,6 @@
            </fileset>
         </ear>
      </target>
  -
  -  <!-- ================================================================== -->
  -  <!-- Documents                                                          -->
  -  <!-- ================================================================== -->
  -
  -  <!--
  -     | Create all generated documenation.
  -     |
  -     | This target should depend on other docs-* targets for each
  -     | different type of docuementation that is to be generated.
  -   -->
  -
  -  <target name="docs" description="Builds all documentation."
  -	  depends="init, docs-api">
  -  </target>
  -
  -  <!-- Javadocs is an exception, but provide a docs-api to conform. -->
  -  <target name="docs-api" depends="docs-javadocs"/>
  -
  -  <!--
  -     | Check if we need to build javadocs
  -     |
  -     | Javadocs will only be generated if one or more .java source files
  -     | is newer than the generated index.html.
  -   -->
  -
  -  <target name="docs-javadocs-check" depends="init">
  -    <!-- if index.html is newer than the sources we are up to date -->
  -    <uptodate property="docs-javadocs.disable"
  -	      targetfile="${build.api}/index.html">
  -      <srcfiles dir="${source.java}" includes="**/*.java"/>
  -    </uptodate>
  -  </target>
  -
  -  <!-- Generate Javadoc if we are out of date -->
  -  <target name="docs-javadocs" depends="docs-javadocs-check" unless="docs-javadocs.disable">
  -    <mkdir dir="${build.api}"/>
  -    <javadoc packagenames="${javadoc.packages}"
  -             sourcepath="${source.java}"
  -             destdir="${build.api}"
  -             classpathref="javadoc.classpath"
  -             windowtitle="${javadoc.windowtitle}"
  -	     splitindex="${javadoc.splitindex}"
  -             doctitle="${javadoc.doctitle}"
  -             author="${javadoc.author}"
  -             version="${javadoc.version}"
  -             public="${javadoc.public}"
  -             package="${javadoc.package}"
  -             protected="${javadoc.protected}"
  -             private="${javadoc.private}"
  -             use="${javadoc.use}"
  -	     verbose="${javadoc.verbose}">
  -      <!-- <group title="??" packages="org.jboss.*"/> -->
  -    </javadoc>
  -  </target>
  -
  -  <target name="javadocs" depends="docs-javadocs"/>
  -
   
     <!-- ================================================================== -->
     <!-- Install & Release                                                  -->
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-05-18 16:52:22
       | 
|   User: starksm 
  Date: 03/05/18 09:52:19
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Add an inheritRefs=true to the maybejars inner antcall so that the path
  references setup in configure are visible
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.68 +2 -4      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.67
  retrieving revision 1.165.2.68
  diff -u -r1.165.2.67 -r1.165.2.68
  --- build.xml	18 May 2003 06:28:06 -0000	1.165.2.67
  +++ build.xml	18 May 2003 16:52:18 -0000	1.165.2.68
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.67 2003/05/18 06:28:06 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.68 2003/05/18 16:52:18 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -61,7 +61,6 @@
      -->
   
     <target name="configure" unless="configure.disable">
  -
       <!-- Give user a chance to override without editing this file
          (and without typing -D each time they run it) -->
       <property file=".ant.properties" />
  @@ -476,7 +475,6 @@
   
     <!-- Compile EJB beans with XDoclet -->
     <target name="compile-bean-sources" depends="init" unless="noxdoclet">
  -
   	<taskdef name="ejbdoclet" classname="xdoclet.modules.ejb.EjbDocletTask" classpathref="xdoclet.task.classpath"/>
   
       <mkdir dir="${build.gen-src}"/>
  @@ -3852,7 +3850,7 @@
   
     <target name="maybejars" depends="init"
             unless="nojars">
  -    <antcall target="jars"/>
  +    <antcall target="jars" inheritRefs="true"/>
     </target>
   
     <target name="tests" description="Execute all tests."
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-05-20 00:18:29
       | 
|   User: starksm 
  Date: 03/05/19 17:18:29
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Add a cts2.jar target
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.69 +20 -4     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.68
  retrieving revision 1.165.2.69
  diff -u -r1.165.2.68 -r1.165.2.69
  --- build.xml	18 May 2003 16:52:18 -0000	1.165.2.68
  +++ build.xml	20 May 2003 00:18:28 -0000	1.165.2.69
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.68 2003/05/18 16:52:18 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.69 2003/05/20 00:18:28 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -1318,6 +1318,10 @@
   
       <!-- build cts.jar -->
       <jar jarfile="${build.lib}/cts.jar">
  +      <metainf dir="${build.resources}/cts/META-INF">
  +        <include name="ejb-jar.xml"/>
  +        <include name="jboss.xml"/>
  +      </metainf>
         <fileset dir="${build.classes}">
           <patternset refid="common.test.application.classes"/>
           <include name="org/jboss/test/cts/interfaces/**"/>
  @@ -1327,9 +1331,21 @@
           <include name="org/jboss/test/cts/keys/**"/>
           <include name="org/jboss/test/cts/test/*_Stub*.class"/>
         </fileset>
  -      <fileset dir="${build.resources}/cts">
  -        <include name="META-INF/ejb-jar.xml"/>
  -        <include name="META-INF/jboss.xml"/>
  +    </jar>
  +    <!-- build a duplicate cts.jar with new home bindings -->
  +    <jar jarfile="${build.lib}/cts2.jar">
  +      <metainf dir="${build.resources}/cts/metainf2">
  +        <include name="ejb-jar.xml"/>
  +        <include name="jboss.xml"/>
  +      </metainf>
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.application.classes"/>
  +        <include name="org/jboss/test/cts/interfaces/**"/>
  +        <include name="org/jboss/test/cts/ejb/**"/>
  +        <include name="org/jboss/test/cts/beans/**"/>
  +        <include name="org/jboss/test/cts/jms/**"/>
  +        <include name="org/jboss/test/cts/keys/**"/>
  +        <include name="org/jboss/test/cts/test/*_Stub*.class"/>
         </fileset>
       </jar>
   
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2003-05-21 20:40:57
       | 
|   User: ejort   
  Date: 03/05/21 13:40:56
  Modified:    .        Tag: Branch_3_0 build.xml
  Log:
  Add a test for the classpath mbean
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.106.2.72 +11 -2     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.106.2.71
  retrieving revision 1.106.2.72
  diff -u -r1.106.2.71 -r1.106.2.72
  --- build.xml	22 Apr 2003 00:38:24 -0000	1.106.2.71
  +++ build.xml	21 May 2003 20:40:54 -0000	1.106.2.72
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.106.2.71 2003/04/22 00:38:24 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.106.2.72 2003/05/21 20:40:54 ejort Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -2937,7 +2937,16 @@
             <include name="loadingresource.sar" />
           </fileset>
        </ear>
  -  </target>
  +
  +    <!-- build classpath.sar -->
  +    <jar jarfile="${build.lib}/classpath.sar">
  +      <metainf dir="${source.resources}/classloader/classpath">
  +         <include name="jboss-service.xml" />
  +      </metainf>
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/classloader/classpath/**"/>
  +      </fileset>
  +    </jar>  </target>
   
     <!-- entity test -->
     <target name="_jars-entity">
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2003-05-22 01:38:19
       | 
|   User: ejort   
  Date: 03/05/21 18:38:18
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Port the classpath mbean test from 3.0
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.70 +11 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.69
  retrieving revision 1.165.2.70
  diff -u -r1.165.2.69 -r1.165.2.70
  --- build.xml	20 May 2003 00:18:28 -0000	1.165.2.69
  +++ build.xml	22 May 2003 01:38:17 -0000	1.165.2.70
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.69 2003/05/20 00:18:28 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.70 2003/05/22 01:38:17 ejort Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -3715,6 +3715,16 @@
           <include name="log4j.properties"/>
         </classes>
       </war>
  +
  +    <!-- build classpath.sar -->
  +    <jar jarfile="${build.lib}/classpath.sar">
  +      <metainf dir="${source.resources}/classloader/classpath">
  +         <include name="jboss-service.xml" />
  +      </metainf>
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/classloader/classpath/**"/>
  +      </fileset>
  +    </jar>
     </target>
   
     <!-- entity test -->
  
  
  
 | 
| 
      
      
      From: Dr. C. G. J. <cg...@us...> - 2003-05-23 07:04:22
       | 
|   User: cgjung  
  Date: 03/05/23 00:04:21
  Modified:    .        build.xml
  Log:
  EJB2.1/WS4EE1.0 preview:
  
  addition of a test module.
  
  Revision  Changes    Path
  1.260     +29 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.259
  retrieving revision 1.260
  diff -u -r1.259 -r1.260
  --- build.xml	12 May 2003 18:58:08 -0000	1.259
  +++ build.xml	23 May 2003 07:04:20 -0000	1.260
  @@ -10,7 +10,7 @@
     <!ENTITY mqstress   SYSTEM "./mqstress.xml">
   ]>
   
  -<!-- $Id: build.xml,v 1.259 2003/05/12 18:58:08 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.260 2003/05/23 07:04:20 cgjung Exp $ -->
   
   <!--+======================================================================+-->
   <!--| JBoss (The OpenSource J2EE WebOS) Build File                         |-->
  @@ -864,6 +864,7 @@
          <call target="_output:entity"/>
          <call target="_output:cmpaop"/>
          <call target="_output:serverside"/>
  +       <call target="_output:ws4ee"/>
        </parallel>
     </target>
   
  @@ -3381,6 +3382,33 @@
       </jar>
     </target>
   
  +  <!-- ws4ee test -->
  +  <target name="_output:ws4ee" depends="_output:support">
  +    <!-- <mkdir dir="${build.lib}"/> -->
  +
  +    <!-- build ws4eetest.jar -->
  +    <jar jarfile="${build.lib}/ws4eetest.jar"
  +         manifest="${build.etc}/manifest.mf">
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.client.classes"/>
  +        <include name="org/jboss/test/ws4ee/interfaces/**"/>
  +        <include name="org/jboss/test/ws4ee/test/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/ws4ee">
  +        <include name="*.*"/>
  +      </fileset>
  +    </jar>
  +
  +    <!-- build ws4ee.jar -->
  +    <jar jarfile="${build.lib}/ws4ee.jar">
  +      <metainf dir="${build.resources}/ws4ee/META-INF" />
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.application.classes"/>
  +        <include name="org/jboss/test/ws4ee/interfaces/**"/>
  +        <include name="org/jboss/test/ws4ee/ejb/**"/>
  +      </fileset>
  +    </jar>
  +  </target>
   
     <!--+====================================================================+-->
     <!--| Documents                                                          |-->
  
  
  
 | 
| 
      
      
      From: Bill B. <pat...@us...> - 2003-05-25 01:49:04
       | 
|   User: patriot1burke
  Date: 03/05/24 18:49:03
  Modified:    .        build.xml
  Log:
  made a standalone AOP test.
  
  Revision  Changes    Path
  1.261     +54 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.260
  retrieving revision 1.261
  diff -u -r1.260 -r1.261
  --- build.xml	23 May 2003 07:04:20 -0000	1.260
  +++ build.xml	25 May 2003 01:49:03 -0000	1.261
  @@ -10,7 +10,7 @@
     <!ENTITY mqstress   SYSTEM "./mqstress.xml">
   ]>
   
  -<!-- $Id: build.xml,v 1.260 2003/05/23 07:04:20 cgjung Exp $ -->
  +<!-- $Id: build.xml,v 1.261 2003/05/25 01:49:03 patriot1burke Exp $ -->
   
   <!--+======================================================================+-->
   <!--| JBoss (The OpenSource J2EE WebOS) Build File                         |-->
  @@ -86,6 +86,7 @@
         <path refid="junit.junit.classpath"/>
         <path refid="dom4j.dom4j.classpath"/>
         <path refid="jdom.classpath"/>
  +      <path refid="javassist.classpath"/>
         <path refid="gnu.regexp.classpath"/>
         <path refid="apache.bcel.classpath"/>
         <path refid="hsqldb.hsqldb.classpath"/>
  @@ -3471,6 +3472,7 @@
     <target name="tests" description="Execute all tests."
       depends="init,
                tests-standard-unit,
  +             aop-test,
                tests-client-unit,
                tests-security-basic-unit,
                tests-standard-stress,
  @@ -4597,6 +4599,57 @@
        | Run testcases in a single directory by specifing the test directory
        | name in -Dtest=dirname in tests/dirname/test/**TestCase.class
      -->
  +
  +  <target name="aop-test" depends="init"
  +          description="Execute a single test.">
  +    <echo message="executing aop standalone test"/>
  +    <mkdir dir="${build.reports}"/>
  +    <mkdir dir="${build.log}"/>
  +    <!-- Remove the test.log so each run has a fresh log -->
  +    <delete file="${build.log}/test.log" />
  +    <junit dir="${module.output}"
  +           printsummary="${junit.printsummary}"
  +           haltonerror="${junit.haltonerror}"
  +           haltonfailure="${junit.haltonfailure}"
  +           fork="${junit.fork}"
  +           timeout="${junit.timeout}"
  +           jvm="${junit.jvm}">
  +
  +      <jvmarg value="${junit.jvm.options}"/>
  +      <jvmarg value="-Djava.system.class.loader=org.jboss.aop.standalone.SystemClassLoader"/>
  +      <jvmarg value="-Djava.security.manager"/>
  +      <jvmarg value="-Djava.security.policy==${build.resources}/aop/client.policy"/>
  +      <sysproperty key="jbosstest.deploy.dir" value="${build.lib}"/>
  +      <sysproperty key="build.log" value="${build.log}"/>
  +      <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/>
  +      <sysproperty key="jbosstest.data.dir" value="${jbosstest.data.dir}"/>
  +      <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/>
  +      <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/>
  +      <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/>
  +      <sysproperty key="jbosstest.server.name" value="${jbosstest.server.name}"/>
  +
  +
  +      <classpath>
  +        <pathelement location="${build.classes}"/>
  +        <pathelement location="${build.resources}"/>
  +        <pathelement location="${build.resources}/aop/standalone"/>
  +        <path refid="tests.classpath"/>
  +      </classpath>
  +
  +      <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter"
  +                 extension=".xml" usefile="${junit.formatter.usefile}"/>
  +
  +      <batchtest todir="${build.reports}"
  +                 haltonerror="${junit.batchtest.haltonerror}"
  +                 haltonfailure="${junit.batchtest.haltonfailure}"
  +                 fork="${junit.batchtest.fork}">
  +
  +        <fileset dir="${build.classes}">
  +          <include name="org/jboss/test/aop/nonjunit/StandaloneUnitTestCase.class"/>
  +        </fileset>
  +      </batchtest>
  +    </junit>
  +  </target>
   
     <target name="test" depends="init"
             description="Execute a single test.">
  
  
  
 | 
| 
      
      
      From: Bill B. <pat...@us...> - 2003-05-25 05:51:26
       | 
|   User: patriot1burke
  Date: 03/05/24 22:51:25
  Modified:    .        build.xml
  Log:
  renamed standalone test
  
  Revision  Changes    Path
  1.262     +2 -2      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.261
  retrieving revision 1.262
  diff -u -r1.261 -r1.262
  --- build.xml	25 May 2003 01:49:03 -0000	1.261
  +++ build.xml	25 May 2003 05:51:25 -0000	1.262
  @@ -10,7 +10,7 @@
     <!ENTITY mqstress   SYSTEM "./mqstress.xml">
   ]>
   
  -<!-- $Id: build.xml,v 1.261 2003/05/25 01:49:03 patriot1burke Exp $ -->
  +<!-- $Id: build.xml,v 1.262 2003/05/25 05:51:25 patriot1burke Exp $ -->
   
   <!--+======================================================================+-->
   <!--| JBoss (The OpenSource J2EE WebOS) Build File                         |-->
  @@ -4645,7 +4645,7 @@
                    fork="${junit.batchtest.fork}">
   
           <fileset dir="${build.classes}">
  -          <include name="org/jboss/test/aop/nonjunit/StandaloneUnitTestCase.class"/>
  +          <include name="org/jboss/test/aop/nonjunit/StandaloneTest.class"/>
           </fileset>
         </batchtest>
       </junit>
  
  
  
 | 
| 
      
      
      From: Dr. C. G. J. <cg...@us...> - 2003-05-26 15:38:41
       | 
|   User: cgjung  
  Date: 03/05/26 08:38:38
  Modified:    .        build.xml
  Log:
  WS4EE 1.0 servlet and application bits.
  
  ws4ee testpackage extended.
  
  Revision  Changes    Path
  1.263     +25 -2     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.262
  retrieving revision 1.263
  diff -u -r1.262 -r1.263
  --- build.xml	25 May 2003 05:51:25 -0000	1.262
  +++ build.xml	26 May 2003 15:38:38 -0000	1.263
  @@ -10,7 +10,7 @@
     <!ENTITY mqstress   SYSTEM "./mqstress.xml">
   ]>
   
  -<!-- $Id: build.xml,v 1.262 2003/05/25 05:51:25 patriot1burke Exp $ -->
  +<!-- $Id: build.xml,v 1.263 2003/05/26 15:38:38 cgjung Exp $ -->
   
   <!--+======================================================================+-->
   <!--| JBoss (The OpenSource J2EE WebOS) Build File                         |-->
  @@ -3402,13 +3402,36 @@
   
       <!-- build ws4ee.jar -->
       <jar jarfile="${build.lib}/ws4ee.jar">
  -      <metainf dir="${build.resources}/ws4ee/META-INF" />
  +      <metainf dir="${build.resources}/ws4ee/jar/META-INF" />
         <fileset dir="${build.classes}">
           <patternset refid="common.test.application.classes"/>
           <include name="org/jboss/test/ws4ee/interfaces/**"/>
           <include name="org/jboss/test/ws4ee/ejb/**"/>
         </fileset>
       </jar>
  +
  +    <!-- build ws4ee.war -->
  +    <war warfile="${build.lib}/ws4ee.war" webxml="${build.resources}/ws4ee/war/WEB-INF/web.xml">
  +      <webinf dir="${build.resources}/ws4ee/war/WEB-INF/">
  +        <include name="*"/>
  +	<exclude name="${build.resources}/ws4ee/war/WEB-INF/web.xml"/>
  +      </webinf>
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.application.classes"/>
  +        <include name="org/jboss/test/ws4ee/interfaces/**"/>
  +        <include name="org/jboss/test/ws4ee/war/**"/>
  +      </fileset>
  +    </war>
  +
  +    <!-- build ws4ee.ear -->
  +    <jar jarfile="${build.lib}/ws4ee.ear">
  +      <metainf dir="${build.resources}/ws4ee/ear/META-INF" />
  +      <fileset dir="${build.lib}">
  +        <include name="ws4ee.jar"/>
  +        <include name="ws4ee.war"/>
  +      </fileset>
  +    </jar>
  +
     </target>
   
     <!--+====================================================================+-->
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2003-05-27 18:34:28
       | 
|   User: ejort   
  Date: 03/05/27 11:34:27
  Modified:    .        build.xml
  Log:
  Tests for the classpath extension bean
  
  Revision  Changes    Path
  1.264     +11 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.263
  retrieving revision 1.264
  diff -u -r1.263 -r1.264
  --- build.xml	26 May 2003 15:38:38 -0000	1.263
  +++ build.xml	27 May 2003 18:34:27 -0000	1.264
  @@ -10,7 +10,7 @@
     <!ENTITY mqstress   SYSTEM "./mqstress.xml">
   ]>
   
  -<!-- $Id: build.xml,v 1.263 2003/05/26 15:38:38 cgjung Exp $ -->
  +<!-- $Id: build.xml,v 1.264 2003/05/27 18:34:27 ejort Exp $ -->
   
   <!--+======================================================================+-->
   <!--| JBoss (The OpenSource J2EE WebOS) Build File                         |-->
  @@ -3285,6 +3285,16 @@
         <metainf dir="${source.resources}/classloader/heirarchicalresource" />
         <fileset dir="${build.lib}">
           <include name="loadingresource.sar"/>
  +      </fileset>
  +    </jar>
  +
  +    <!-- build classpath.sar -->
  +    <jar jarfile="${build.lib}/classpath.sar">
  +      <metainf dir="${source.resources}/classloader/classpath">
  +         <include name="jboss-service.xml" />
  +      </metainf>
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/classloader/classpath/**"/>
         </fileset>
       </jar>
     </target>
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2003-05-28 19:49:00
       | 
|   User: ejort   
  Date: 03/05/28 12:48:59
  Modified:    .        build.xml
  Log:
  Some missed parts of the cts tests ported from 3.2
  
  Revision  Changes    Path
  1.265     +40 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.264
  retrieving revision 1.265
  diff -u -r1.264 -r1.265
  --- build.xml	27 May 2003 18:34:27 -0000	1.264
  +++ build.xml	28 May 2003 19:48:58 -0000	1.265
  @@ -10,7 +10,7 @@
     <!ENTITY mqstress   SYSTEM "./mqstress.xml">
   ]>
   
  -<!-- $Id: build.xml,v 1.264 2003/05/27 18:34:27 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.265 2003/05/28 19:48:58 ejort Exp $ -->
   
   <!--+======================================================================+-->
   <!--| JBoss (The OpenSource J2EE WebOS) Build File                         |-->
  @@ -1094,6 +1094,16 @@
          <classpath refid="tests.classpath"/>
          <include name="org/jboss/test/cts/**" />
       </javac>
  +
  +    <jar jarfile="${build.lib}/cts-v1cmp.sar">
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/cts/service/CtsCmpService*.class"/>
  +        <include name="org/jboss/test/util/Debug.class"/>
  +      </fileset>
  +      <metainf dir="${build.resources}/cts/cmpv1">
  +        <include name="jboss-service.xml"/>
  +      </metainf>
  +    </jar>
       <jar jarfile="${build.lib}/cts-v1cmp.jar">
         <fileset dir="${build.classes}">
           <patternset refid="common.test.application.classes"/>
  @@ -1115,6 +1125,16 @@
            <include name="cts-v1cmp.jar" />
          </fileset>
       </ear>
  +    <ear earfile="${build.lib}/cts-v1cmp-sar.ear"
  +       appxml="${build.resources}/cts/cmpv1/application.xml">
  +       <metainf dir="${build.resources}/cts/cmpv1/ear+sar">
  +         <include name="jboss-app.xml" />
  +       </metainf>
  +       <fileset dir="${build.lib}">
  +         <include name="cts-v1cmp.jar" />
  +         <include name="cts-v1cmp.sar" />
  +       </fileset>
  +    </ear>
   
       <!-- Build version 2 of the cts-cmp2 ear -->
       <delete dir="${build.classes}/org/jboss/test/cts">
  @@ -1133,6 +1153,15 @@
          <include name="org/jboss/test/cts/**" />
       </javac>
   
  +    <jar jarfile="${build.lib}/cts-v2cmp.sar">
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/cts/service/CtsCmpService*.class"/>
  +        <include name="org/jboss/test/util/Debug.class"/>
  +      </fileset>
  +      <metainf dir="${build.resources}/cts/cmpv2">
  +        <include name="jboss-service.xml"/>
  +      </metainf>
  +    </jar>
       <jar jarfile="${build.lib}/cts-v2cmp.jar">
         <fileset dir="${build.classes}">
           <patternset refid="common.test.application.classes"/>
  @@ -1152,6 +1181,16 @@
          </metainf>
          <fileset dir="${build.lib}">
            <include name="cts-v2cmp.jar" />
  +       </fileset>
  +    </ear>
  +    <ear earfile="${build.lib}/cts-v2cmp-sar.ear"
  +       appxml="${build.resources}/cts/cmpv2/application.xml">
  +       <metainf dir="${build.resources}/cts/cmpv2/ear+sar">
  +         <include name="jboss-app.xml" />
  +       </metainf>
  +       <fileset dir="${build.lib}">
  +         <include name="cts-v2cmp.jar" />
  +         <include name="cts-v2cmp.sar" />
          </fileset>
       </ear>
     </target>
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2003-05-28 20:26:11
       | 
|   User: ejort   
  Date: 03/05/28 13:26:09
  Modified:    .        build.xml
  Log:
  Some missed parts of of the cts tests ported from 3.2
  
  Revision  Changes    Path
  1.266     +16 -0     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.265
  retrieving revision 1.266
  diff -u -r1.265 -r1.266
  --- build.xml	28 May 2003 19:48:58 -0000	1.265
  +++ build.xml	28 May 2003 20:26:07 -0000	1.266
  @@ -10,7 +10,7 @@
     <!ENTITY mqstress   SYSTEM "./mqstress.xml">
   ]>
   
  -<!-- $Id: build.xml,v 1.265 2003/05/28 19:48:58 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.266 2003/05/28 20:26:07 ejort Exp $ -->
   
   <!--+======================================================================+-->
   <!--| JBoss (The OpenSource J2EE WebOS) Build File                         |-->
  @@ -1077,6 +1077,22 @@
         <fileset dir="${build.resources}/cts">
           <include name="META-INF/ejb-jar.xml"/>
           <include name="META-INF/jboss.xml"/>
  +      </fileset>
  +    </jar>
  +    <!-- build a duplicate cts.jar with new home bindings -->
  +    <jar jarfile="${build.lib}/cts2.jar">
  +      <metainf dir="${build.resources}/cts/metainf2">
  +        <include name="ejb-jar.xml"/>
  +        <include name="jboss.xml"/>
  +      </metainf>
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.application.classes"/>
  +        <include name="org/jboss/test/cts/interfaces/**"/>
  +        <include name="org/jboss/test/cts/ejb/**"/>
  +        <include name="org/jboss/test/cts/beans/**"/>
  +        <include name="org/jboss/test/cts/jms/**"/>
  +        <include name="org/jboss/test/cts/keys/**"/>
  +        <include name="org/jboss/test/cts/test/*_Stub*.class"/>
         </fileset>
       </jar>
   
  
  
  
 | 
| 
      
      
      From: Sacha L. <sla...@us...> - 2003-05-30 07:08:41
       | 
|   User: slaboure
  Date: 03/05/29 23:59:40
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Fixed testsuite build
  (cluster file for singleton service are not located in jbossha-client.jar but instead in jbossha.jar which was not on the classpath)
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.71 +5 -2      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.70
  retrieving revision 1.165.2.71
  diff -u -r1.165.2.70 -r1.165.2.71
  --- build.xml	22 May 2003 01:38:17 -0000	1.165.2.70
  +++ build.xml	30 May 2003 06:59:39 -0000	1.165.2.71
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.70 2003/05/22 01:38:17 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.71 2003/05/30 06:59:39 slaboure Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -289,7 +289,9 @@
        <path id="jboss.cluster.classpath">
          <pathelement path="${jboss.cluster.lib}/jbossha-client.jar"/>
        </path>
  -
  +     <path id="jboss.cluster-server.classpath">
  +       <pathelement path="${jboss.cluster.lib}/jbossha.jar"/>
  +     </path>
        <!-- Transaction -->
        <property name="jboss.transaction.root" value="${project.root}/transaction/output"/>
        <property name="jboss.transaction.lib" value="${jboss.transaction.root}/lib"/>
  @@ -340,6 +342,7 @@
         <path refid="jboss.security.classpath"/>
         <path refid="jboss.connector.classpath"/>
         <path refid="jboss.cluster.classpath"/>
  +      <path refid="jboss.cluster-server.classpath"/>
         <path refid="jboss.management.classpath"/>
         <path refid="jboss.transaction.classpath"/>
         <path refid="jboss.varia.classpath"/>
  
  
  
 | 
| 
      
      
      From: Sacha L. <sla...@us...> - 2003-05-30 13:40:44
       | 
|   User: slaboure
  Date: 03/05/30 06:40:41
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Fix testsuite after singleton commit
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.72 +5 -4      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.71
  retrieving revision 1.165.2.72
  diff -u -r1.165.2.71 -r1.165.2.72
  --- build.xml	30 May 2003 06:59:39 -0000	1.165.2.71
  +++ build.xml	30 May 2003 13:40:38 -0000	1.165.2.72
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.71 2003/05/30 06:59:39 slaboure Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.72 2003/05/30 13:40:38 slaboure Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -289,9 +289,10 @@
        <path id="jboss.cluster.classpath">
          <pathelement path="${jboss.cluster.lib}/jbossha-client.jar"/>
        </path>
  -     <path id="jboss.cluster-server.classpath">
  -       <pathelement path="${jboss.cluster.lib}/jbossha.jar"/>
  +     <path id="jboss.cluster-singleton.classpath">
  +       <pathelement path="${jboss.cluster.lib}/jbossha-singleton.jar"/>
        </path>
  +     
        <!-- Transaction -->
        <property name="jboss.transaction.root" value="${project.root}/transaction/output"/>
        <property name="jboss.transaction.lib" value="${jboss.transaction.root}/lib"/>
  @@ -342,7 +343,7 @@
         <path refid="jboss.security.classpath"/>
         <path refid="jboss.connector.classpath"/>
         <path refid="jboss.cluster.classpath"/>
  -      <path refid="jboss.cluster-server.classpath"/>
  +      <path refid="jboss.cluster-singleton.classpath"/>
         <path refid="jboss.management.classpath"/>
         <path refid="jboss.transaction.classpath"/>
         <path refid="jboss.varia.classpath"/>
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-06-02 11:28:30
       | 
|   User: starksm 
  Date: 03/06/02 04:28:29
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Include a resources.jar in the jbosstest-web.war
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.73 +7 -2      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.72
  retrieving revision 1.165.2.73
  diff -u -r1.165.2.72 -r1.165.2.73
  --- build.xml	30 May 2003 13:40:38 -0000	1.165.2.72
  +++ build.xml	2 Jun 2003 11:28:28 -0000	1.165.2.73
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.72 2003/05/30 13:40:38 slaboure Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.73 2003/06/02 11:28:28 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -2879,6 +2879,10 @@
       </war>
   
       <!-- build jbosstest-web.war -->
  +    <jar destfile="${build.lib}/resources.jar">
  +      <zipfileset dir="${build.resources}/web/html/jbosstest"
  +      prefix="org/jboss/resources" includes="JBoss.properties" />
  +    </jar>
       <war warfile="${build.lib}/jbosstest-web.war"
         webxml="${build.resources}/web/WEB-INF/jbosstest-web.xml">
         <webinf dir="${build.resources}/web/html/jbosstest/WEB-INF">
  @@ -2886,6 +2890,7 @@
         </webinf>
         <lib dir="${build.lib}">
           <include name="jbosstest-web-util.jar"/>
  +        <include name="resources.jar" />
         </lib>
         <classes dir="${build.classes}">
            <!-- -->
  @@ -3713,7 +3718,7 @@
           <include name="*.jar"/>
         </lib>
         <classes dir="${build.classes}">
  -        <include name="org/jboss/test/classloader/scoping/override/web/log4j113/*"/>
  +        <include name="org/jboss/test/classloader/scoping/override/web/**"/>
         </classes>
         <classes dir="${build.resources}/classloader/scoping/override/log4j113">
           <include name="log4j.properties"/>
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-06-02 11:49:24
       | 
|   User: starksm 
  Date: 03/06/02 04:49:22
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Include the tst.keystore in the security-spec.sar
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.74 +4 -1      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.73
  retrieving revision 1.165.2.74
  diff -u -r1.165.2.73 -r1.165.2.74
  --- build.xml	2 Jun 2003 11:28:28 -0000	1.165.2.73
  +++ build.xml	2 Jun 2003 11:49:20 -0000	1.165.2.74
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.73 2003/06/02 11:28:28 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.74 2003/06/02 11:49:20 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -3047,6 +3047,9 @@
       <!-- build security-spec.jar -->
       <jar jarfile="${build.lib}/security-spec.sar">
         <metainf dir="${build.resources}/security-spec/service-inf" />
  +      <fileset dir="${build.resources}/security">
  +        <include name="tst.keystore" />
  +      </fileset>
         <fileset dir="${build.classes}">
           <include name="org/jboss/test/security/service/SecurityConfig*.class"/>
         </fileset>
  
  
  
 | 
| 
      
      
      From: Alexey L. <lou...@us...> - 2003-06-02 14:13:20
       | 
|   User: loubyansky
  Date: 03/06/02 07:13:15
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  added generation of DDs by XDoclet.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.75 +10 -2     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.74
  retrieving revision 1.165.2.75
  diff -u -r1.165.2.74 -r1.165.2.75
  --- build.xml	2 Jun 2003 11:49:20 -0000	1.165.2.74
  +++ build.xml	2 Jun 2003 14:13:13 -0000	1.165.2.75
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.74 2003/06/02 11:49:20 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.75 2003/06/02 14:13:13 loubyansky Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -601,7 +601,7 @@
       <ejbdoclet destdir="${build.gen-src}"
   	     ejbspec="2.0"
   	     excludedtags="@version,@author"
  -             mergedir="${source.resources}/cmp2/fkmapping">
  +             mergedir="${source.etc}/cmp2/fkmapping">
         <fileset dir="${source.java}">
           <include name="org/jboss/test/cmp2/fkmapping/ejb/*Bean.java"/>
         </fileset>
  @@ -613,6 +613,14 @@
         <utilobject cacheHomes="true" includeGUID="false"/>
         <entitycmp/>
         <session/>
  +      <deploymentdescriptor
  +         destdir="${build.resources}/cmp2/fkmapping/META-INF"
  +         validatexml="${validatexml}"/>
  +      <jboss
  +         version="3.2"
  +         xmlencoding="UTF-8"
  +         destdir="${build.resources}/cmp2/fkmapping/META-INF"
  +         validatexml="${validatexml}"/>
       </ejbdoclet>
   
       <!-- foreign key mapping stack overflow error tests -->
  
  
  
 | 
| 
      
      
      From: Alexey L. <lou...@us...> - 2003-06-03 12:31:42
       | 
|   User: loubyansky
  Date: 03/06/03 05:31:41
  Modified:    .        build.xml
  Log:
  JBossDO tests.
  
  Revision  Changes    Path
  1.267     +100 -1    jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.266
  retrieving revision 1.267
  diff -u -r1.266 -r1.267
  --- build.xml	28 May 2003 20:26:07 -0000	1.266
  +++ build.xml	3 Jun 2003 12:31:40 -0000	1.267
  @@ -10,7 +10,7 @@
     <!ENTITY mqstress   SYSTEM "./mqstress.xml">
   ]>
   
  -<!-- $Id: build.xml,v 1.266 2003/05/28 20:26:07 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.267 2003/06/03 12:31:40 loubyansky Exp $ -->
   
   <!--+======================================================================+-->
   <!--| JBoss (The OpenSource J2EE WebOS) Build File                         |-->
  @@ -850,6 +850,7 @@
          <call target="_output:security"/>
          <call target="_output:exception"/>
          <call target="_output:cmp2"/>
  +       <call target="_output:jbossdo"/>
          <call target="_output:jsr77"/>
          <call target="_output:scheduler"/>
          <call target="_output:foedeployer"/>
  @@ -3135,6 +3136,62 @@
   
     </target>
   
  +  <!-- jbossdo tests -->
  +  <target name="_output:jbossdo" depends="_output:support">
  +    <!-- <mkdir dir="${build.lib}"/> -->
  +    <!-- build jbossdo-byhand.jar -->
  +    <jar jarfile="${build.lib}/jbossdo-byhand.jar"
  +         manifest="${build.etc}/manifest.mf">
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.client.classes"/>
  +        <include name="org/jboss/test/cmp/jbossdo/util/**"/>
  +        <include name="org/jboss/test/cmp/jbossdo/byhand/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/cmp/jbossdo/byhand">
  +        <include name="**"/>
  +      </fileset>
  +    </jar>
  +
  +    <!-- build jbossdo-complextypes.jar -->
  +    <jar jarfile="${build.lib}/jbossdo-complextypes.jar"
  +         manifest="${build.etc}/manifest.mf">
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.client.classes"/>
  +        <include name="org/jboss/test/cmp/jbossdo/util/**"/>
  +        <include name="org/jboss/test/cmp/jbossdo/complextypes/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/cmp/jbossdo/complextypes">
  +        <include name="**"/>
  +      </fileset>
  +    </jar>
  +
  +    <!-- build jbossdo-one2oneuni.jar -->
  +    <jar jarfile="${build.lib}/jbossdo-one2oneuni.jar"
  +         manifest="${build.etc}/manifest.mf">
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.client.classes"/>
  +        <include name="org/jboss/test/cmp/jbossdo/util/**"/>
  +        <include name="org/jboss/test/cmp/jbossdo/one2oneuni/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/cmp/jbossdo/one2oneuni">
  +        <include name="**"/>
  +      </fileset>
  +    </jar>
  +
  +    <!-- build jbossdo-one2onebi.jar -->
  +    <jar jarfile="${build.lib}/jbossdo-one2onebi.jar"
  +         manifest="${build.etc}/manifest.mf">
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.client.classes"/>
  +        <include name="org/jboss/test/cmp/jbossdo/util/**"/>
  +        <include name="org/jboss/test/cmp/jbossdo/one2onebi/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/cmp/jbossdo/one2onebi">
  +        <include name="**"/>
  +      </fileset>
  +    </jar>
  +  </target>
  +
     <!-- exception tests -->
     <target name="_output:exception" depends="_output:support">
       <!-- <mkdir dir="${build.lib}"/> -->
  @@ -4671,6 +4728,48 @@
       </junit>
     </target>
   
  +  <!--
  +     | Run all jbossdo related tests
  +   -->
  +  <target name="tests-jbossdo" depends="init, run-jbossdo-tests, tests-report-html"/>
  +  <target name="run-jbossdo-tests" depends="maybejars">
  +    <mkdir dir="${build.reports}"/>
  +    <mkdir dir="${build.log}"/>
  +    <junit dir="${module.output}"
  +           printsummary="${junit.printsummary}"
  +           haltonerror="${junit.haltonerror}"
  +           haltonfailure="${junit.haltonfailure}"
  +           fork="${junit.fork}"
  +           timeout="${junit.timeout}"
  +           jvm="${junit.jvm}">
  +
  +      <jvmarg value="${junit.jvm.options}"/>
  +      <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
  +      <sysproperty key="build.log" value="${build.log}"/>
  +      <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/>
  +      <sysproperty key="jbosstest.data.dir" value="${jbosstest.data.dir}"/>
  +      <sysproperty key="jbosstest.iterationcount" value="2"/>
  +
  +      <classpath>
  +        <pathelement location="${build.classes}"/>
  +        <pathelement location="${build.resources}"/>
  +        <path refid="tests.classpath"/>
  +      </classpath>
  +
  +      <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter"
  +                 extension=".xml" usefile="${junit.formatter.usefile}"/>
  +
  +      <batchtest todir="${build.reports}"
  +                 haltonerror="${junit.batchtest.haltonerror}"
  +                 haltonfailure="${junit.batchtest.haltonfailure}"
  +                 fork="${junit.batchtest.fork}">
  +
  +        <fileset dir="${build.classes}">
  +          <include name="**/cmp/jbossdo/**/*UnitTestCase.class"/>
  +        </fileset>
  +      </batchtest>
  +    </junit>
  +  </target>
   
   
     <target name="run.aop.cluster.test" depends="init">
  
  
  
 | 
| 
      
      
      From: Alexey L. <lou...@us...> - 2003-06-03 12:34:16
       | 
|   User: loubyansky
  Date: 03/06/03 05:34:15
  Modified:    .        build.xml
  Log:
  removed stale cmpaop tests.
  
  Revision  Changes    Path
  1.268     +1 -57     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.267
  retrieving revision 1.268
  diff -u -r1.267 -r1.268
  --- build.xml	3 Jun 2003 12:31:40 -0000	1.267
  +++ build.xml	3 Jun 2003 12:34:14 -0000	1.268
  @@ -10,7 +10,7 @@
     <!ENTITY mqstress   SYSTEM "./mqstress.xml">
   ]>
   
  -<!-- $Id: build.xml,v 1.267 2003/06/03 12:31:40 loubyansky Exp $ -->
  +<!-- $Id: build.xml,v 1.268 2003/06/03 12:34:14 loubyansky Exp $ -->
   
   <!--+======================================================================+-->
   <!--| JBoss (The OpenSource J2EE WebOS) Build File                         |-->
  @@ -864,7 +864,6 @@
          <call target="_output:classloader"/>
          <call target="_output:timer"/>
          <call target="_output:entity"/>
  -       <call target="_output:cmpaop"/>
          <call target="_output:serverside"/>
          <call target="_output:ws4ee"/>
        </parallel>
  @@ -3470,17 +3469,6 @@
       </jar>
     </target>
   
  -  <!-- cmp aop test -->
  -  <target name="_output:cmpaop" depends="_output:support">
  -    <!-- build jboss-cmp-aop.jar -->
  -    <jar jarfile="${build.lib}/jboss-cmp-aop.jar"
  -	 manifest="${build.etc}/manifest.mf">
  -      <fileset dir="${build.classes}">
  -        <include name="org/jboss/test/cmp/aop/**"/>
  -      </fileset>
  -    </jar>
  -  </target>
  -
     <!-- serverside support -->
     <target name="_output:serverside" depends="_output:support">
       <!-- build server side service -->
  @@ -4683,50 +4671,6 @@
       </junit>
     </target>
   
  -
  -  <!--
  -     | Run all cmp aop related tests
  -   -->
  -
  -  <target name="tests-cmpaop" depends="init, run-cmp-aop-tests, tests-report-html"/>
  -  <target name="run-cmp-aop-tests" depends="maybejars">
  -    <mkdir dir="${build.reports}"/>
  -    <mkdir dir="${build.log}"/>
  -    <junit dir="${module.output}"
  -           printsummary="${junit.printsummary}"
  -           haltonerror="${junit.haltonerror}"
  -           haltonfailure="${junit.haltonfailure}"
  -           fork="${junit.fork}"
  -           timeout="${junit.timeout}"
  -           jvm="${junit.jvm}">
  -
  -      <jvmarg value="${junit.jvm.options}"/>
  -      <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
  -      <sysproperty key="build.log" value="${build.log}"/>
  -      <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/>
  -      <sysproperty key="jbosstest.data.dir" value="${jbosstest.data.dir}"/>
  -      <sysproperty key="jbosstest.iterationcount" value="2"/>
  -
  -      <classpath>
  -        <pathelement location="${build.classes}"/>
  -        <pathelement location="${build.resources}"/>
  -        <path refid="tests.classpath"/>
  -      </classpath>
  -
  -      <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter"
  -                 extension=".xml" usefile="${junit.formatter.usefile}"/>
  -
  -      <batchtest todir="${build.reports}"
  -                 haltonerror="${junit.batchtest.haltonerror}"
  -                 haltonfailure="${junit.batchtest.haltonfailure}"
  -                 fork="${junit.batchtest.fork}">
  -
  -        <fileset dir="${build.classes}">
  -          <include name="**/cmp/aop/**/*TestCase.class"/>
  -        </fileset>
  -      </batchtest>
  -    </junit>
  -  </target>
   
     <!--
        | Run all jbossdo related tests
  
  
  
 | 
| 
      
      
      From: Alexey L. <lou...@us...> - 2003-06-04 15:58:40
       | 
|   User: loubyansky
  Date: 03/06/04 08:58:39
  Modified:    .        build.xml
  Log:
  added collection testcase
  
  Revision  Changes    Path
  1.269     +14 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.268
  retrieving revision 1.269
  diff -u -r1.268 -r1.269
  --- build.xml	3 Jun 2003 12:34:14 -0000	1.268
  +++ build.xml	4 Jun 2003 15:58:38 -0000	1.269
  @@ -10,7 +10,7 @@
     <!ENTITY mqstress   SYSTEM "./mqstress.xml">
   ]>
   
  -<!-- $Id: build.xml,v 1.268 2003/06/03 12:34:14 loubyansky Exp $ -->
  +<!-- $Id: build.xml,v 1.269 2003/06/04 15:58:38 loubyansky Exp $ -->
   
   <!--+======================================================================+-->
   <!--| JBoss (The OpenSource J2EE WebOS) Build File                         |-->
  @@ -3186,6 +3186,19 @@
           <include name="org/jboss/test/cmp/jbossdo/one2onebi/**"/>
         </fileset>
         <fileset dir="${build.resources}/cmp/jbossdo/one2onebi">
  +        <include name="**"/>
  +      </fileset>
  +    </jar>
  +
  +    <!-- build jbossdo-collection.jar -->
  +    <jar jarfile="${build.lib}/jbossdo-collection.jar"
  +         manifest="${build.etc}/manifest.mf">
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.client.classes"/>
  +        <include name="org/jboss/test/cmp/jbossdo/util/**"/>
  +        <include name="org/jboss/test/cmp/jbossdo/collection/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/cmp/jbossdo/collection">
           <include name="**"/>
         </fileset>
       </jar>
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2003-06-04 18:46:48
       | 
|   User: ejort   
  Date: 03/06/04 11:46:47
  Modified:    .        Tag: Branch_3_0 build.xml
  Log:
  Avoid the build when running the objectweb tests
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.106.2.73 +2 -2      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.106.2.72
  retrieving revision 1.106.2.73
  diff -u -r1.106.2.72 -r1.106.2.73
  --- build.xml	21 May 2003 20:40:54 -0000	1.106.2.72
  +++ build.xml	4 Jun 2003 18:46:45 -0000	1.106.2.73
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.106.2.72 2003/05/21 20:40:54 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.106.2.73 2003/06/04 18:46:45 ejort Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -4030,7 +4030,7 @@
     <!--
        | Run the JORAM JMS testsuite against JBossMQ
      -->
  -  <target name="tests-objectweb-jms" depends="compile-classes, compile-resources">
  +  <target name="tests-objectweb-jms" depends="maybejars">
       <mkdir dir="${build.reports}"/>
       <mkdir dir="${build.testlog}"/>
       <junit dir="${module.output}"
  
  
  
 | 
| 
      
      
      From: Ben W. <bw...@us...> - 2003-06-08 09:37:47
       | 
|   User: bwang00 
  Date: 03/06/08 02:37:46
  Modified:    .        build.xml
  Log:
  Added cachetest.sar to test tree cache with JBoss tm
  
  Revision  Changes    Path
  1.270     +9 -5      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.269
  retrieving revision 1.270
  diff -u -r1.269 -r1.270
  --- build.xml	4 Jun 2003 15:58:38 -0000	1.269
  +++ build.xml	8 Jun 2003 09:37:45 -0000	1.270
  @@ -10,7 +10,7 @@
     <!ENTITY mqstress   SYSTEM "./mqstress.xml">
   ]>
   
  -<!-- $Id: build.xml,v 1.269 2003/06/04 15:58:38 loubyansky Exp $ -->
  +<!-- $Id: build.xml,v 1.270 2003/06/08 09:37:45 bwang00 Exp $ -->
   
   <!--+======================================================================+-->
   <!--| JBoss (The OpenSource J2EE WebOS) Build File                         |-->
  @@ -2474,14 +2474,18 @@
   
           <!-- build cachetest.sar -->
           <!--
  +        -->
  +        <copy file="${build.resources}/cache/META-INF/transient-cache-service.xml"
  +             tofile="${build.resources}/cache/META-INF/jboss-service.xml"/>
  +
           <jar jarfile="${build.lib}/cachetest.sar">
  +            <fileset dir="${jboss.cache.lib}">
  +                <include name="jboss-cache.jar"/>
  +            </fileset>
               <fileset dir="${build.resources}/cache">
  -                <include name="**/repl-sync-cache-service.xml"/>
  -                <include name="**/*-aop.xml"/>
  +                <include name="**/jboss-service.xml"/>
               </fileset>
  -            <metainf dir="${build.resources}/cache/bean/META-INF/"/>
           </jar>
  -        -->
   
           <!-- build cachetest.aop -->
           <jar jarfile="${build.lib}/cachetest.aop"
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-06-11 00:52:29
       | 
|   User: starksm 
  Date: 03/06/10 17:52:27
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Add a user2-xmbean-embedded.sar target
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.76 +9 -1      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.75
  retrieving revision 1.165.2.76
  diff -u -r1.165.2.75 -r1.165.2.76
  --- build.xml	2 Jun 2003 14:13:13 -0000	1.165.2.75
  +++ build.xml	11 Jun 2003 00:52:25 -0000	1.165.2.76
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.75 2003/06/02 14:13:13 loubyansky Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.76 2003/06/11 00:52:25 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -2290,6 +2290,14 @@
         </fileset>
       </jar>
   
  +    <!--xmbean embedded dd tests -->
  +    <jar jarfile="${build.lib}/user2-xmbean-embedded.sar">
  +      <metainf dir="${build.resources}/jmx/xmbean/embedded" />
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/jmx/xmbean/User2.class"/>
  +        <include name="org/jboss/test/jmx/xmbean/CustomType*.class"/>
  +      </fileset>
  +    </jar>
       <!--xmbean persistence tests -->
       <jar jarfile="${build.lib}/user2-xmbean.sar">
         <metainf dir="${build.resources}/jmx/xmbean/user2" />
  
  
  
 |