| 
      
      
      From: Scott M S. <st...@us...> - 2004-01-02 00:11:36
       | 
|   User: starksm 
  Date: 04/01/01 16:11:34
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Add the web-sso.ear build to the _jars-web target
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.128 +37 -4     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.127
  retrieving revision 1.165.2.128
  diff -u -r1.165.2.127 -r1.165.2.128
  --- build.xml	26 Dec 2003 21:10:08 -0000	1.165.2.127
  +++ build.xml	2 Jan 2004 00:11:33 -0000	1.165.2.128
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.127 2003/12/26 21:10:08 reverbel Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.128 2004/01/02 00:11:33 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -2601,7 +2601,7 @@
         <copy todir="${build.lib}" filtering="true" overwrite="true"
            file="${source.resources}/jmx/archivestest-service.xml">
            <filterset>
  -            <filter token="codebase" value="file:/${codebaseURL}"/>
  +            <filter token="codebase" value="file://${codebaseURL}"/>
            </filterset>
         </copy>
     </target>
  @@ -3072,7 +3072,7 @@
     </target>
   
     <!-- web test -->
  -  <target name="_jars-web" depends="_jars-cts">
  +  <target name="_jars-web">
       <mkdir dir="${build.lib}"/>
   
       <!-- build jbosstest-web-ejbs.jar -->
  @@ -3265,11 +3265,44 @@
         </fileset>
       </ear>
       <ear earfile="${build.lib}/jbosstest-good.ear"
  -    appxml="${build.resources}/web/META-INF/application-good.xml">
  +      appxml="${build.resources}/web/META-INF/application-good.xml">
         <fileset dir="${build.lib}">
           <include name="good-web.war"/>
         </fileset>
       </ear>
  +
  +    <!-- Create an sso.ear to test single sign-on between web apps
  +    -->
  +    <war destfile="${build.lib}/sso-form-auth.war"
  +      webxml="${build.resources}/web/sso/war/web-form-auth.xml">
  +      <webinf dir="${build.resources}/web/sso/war">
  +        <include name="jboss-web.xml"/>
  +      </webinf>
  +      <fileset dir="${build.resources}/web/sso/war">
  +        <include name="**/*.html"/>
  +      </fileset>
  +    </war>
  +    <jar destfile="${build.lib}/redeploy.sar">
  +      <metainf dir="${build.resources}/web/sso">
  +         <include name="jboss-service.xml" />
  +      </metainf>
  +      <fileset dir="${build.classes}">
  +         <include name="org/jboss/test/util/service/*" />
  +      </fileset>
  +    </jar>
  +    <zip destfile="${build.lib}/web-sso.ear">
  +      <zipfileset dir="${build.resources}/web/sso" prefix="META-INF">
  +         <include name="application.xml" />
  +      </zipfileset>
  +      <zipfileset dir="${build.resources}/web">
  +         <include name="users.properties" />
  +         <include name="roles.properties" />
  +      </zipfileset>
  +      <zipfileset dir="${build.lib}" includes="sso-form-auth.war"
  +         fullpath="sso-form-auth1.war" />
  +      <zipfileset dir="${build.lib}" includes="sso-form-auth.war"
  +         fullpath="sso-form-auth2.war" />
  +    </zip>
     </target>
   
     <!-- bench test -->
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2004-01-03 17:40:44
       | 
|   User: starksm 
  Date: 04/01/03 09:40:21
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Exclude the SingleSignOnUnitTestCase until the redeployment issue is
  addressed
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.130 +2 -1      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.129
  retrieving revision 1.165.2.130
  diff -u -r1.165.2.129 -r1.165.2.130
  --- build.xml	2 Jan 2004 22:57:48 -0000	1.165.2.129
  +++ build.xml	3 Jan 2004 17:40:20 -0000	1.165.2.130
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.129 2004/01/02 22:57:48 telrod Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.130 2004/01/03 17:40:20 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -4710,6 +4710,7 @@
   
             <!-- Exclude JSR77, it is run in its own target with a security manager -->
             <exclude name="**/test/management/test/**UnitTestCase.class"/>
  +          <exclude name="org/jboss/test/web/test/SingleSignOnUnitTestCase.class"/>
           </fileset>
         </batchtest>
       </junit>
  
  
  
 | 
| 
      
      
      From: Bill B. <pat...@us...> - 2004-01-08 00:12:55
       | 
|   User: patriot1burke
  Date: 04/01/07 16:12:54
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  test for pluggable retry handlers
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.131 +32 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.130
  retrieving revision 1.165.2.131
  diff -u -r1.165.2.130 -r1.165.2.131
  --- build.xml	3 Jan 2004 17:40:20 -0000	1.165.2.130
  +++ build.xml	8 Jan 2004 00:12:46 -0000	1.165.2.131
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.130 2004/01/03 17:40:20 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.131 2004/01/08 00:12:46 patriot1burke Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -1141,6 +1141,7 @@
                      _jars-deadlock,
                      _jars-pooled,
                      _jars-testbean,
  +                   _jars-retry,
                      _jars-testbeancluster,
                      _jars-perf,
                      _jars-web,
  @@ -2950,6 +2951,36 @@
           <include name="org/jboss/test/testbean2/bean/**"/>
         </fileset>
         <fileset dir="${build.resources}/testbean2">
  +        <include name="**/*.xml"/>
  +      </fileset>
  +    </jar>
  +  </target>
  +
  +  <!-- testbean test -->
  +  <target name="_jars-retry">
  +    <mkdir dir="${build.lib}"/>
  +
  +    <!-- build retry.jar -->
  +    <jar jarfile="${build.lib}/retrytest.jar"
  +	 manifest="${build.etc}/manifest.mf">
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.client.classes"/>
  +        <include name="org/jboss/test/retry/interfaces/**"/>
  +        <include name="org/jboss/test/retry/test/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/retry">
  +        <include name="*.*"/>
  +      </fileset>
  +    </jar>
  +
  +    <!-- build retry.jar -->
  +    <jar jarfile="${build.lib}/retry.jar">
  +      <fileset dir="${build.classes}">
  +        <patternset refid="jboss.test.util.ejb.set"/>
  +        <include name="org/jboss/test/retry/interfaces/**"/>
  +        <include name="org/jboss/test/retry/bean/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/retry">
           <include name="**/*.xml"/>
         </fileset>
       </jar>
  
  
  
 | 
| 
      
      
      From: Bill B. <pat...@us...> - 2004-01-08 00:37:42
       | 
|   User: patriot1burke
  Date: 04/01/07 16:37:42
  Modified:    .        build.xml
  Log:
  test for pluggable retry handlers
  
  Revision  Changes    Path
  1.324     +31 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.323
  retrieving revision 1.324
  diff -u -r1.323 -r1.324
  --- build.xml	28 Dec 2003 15:11:35 -0000	1.323
  +++ build.xml	8 Jan 2004 00:37:41 -0000	1.324
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.323 2003/12/28 15:11:35 reverbel Exp $ -->
  +<!-- $Id: build.xml,v 1.324 2004/01/08 00:37:41 patriot1burke Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -1298,6 +1298,7 @@
                      _jars-threading,
                      _jars-deadlock,
                      _jars-pooled,
  +                   _jars-retry,
                      _jars-testbean,
                      _jars-testbeancluster,
                      _jars-perf,
  @@ -3014,6 +3015,35 @@
         </fileset>
       </jar>
   
  +  </target>
  +
  +  <target name="_jars-retry">
  +    <mkdir dir="${build.lib}"/>
  +
  +    <!-- build retry.jar -->
  +    <jar jarfile="${build.lib}/retrytest.jar"
  +	 manifest="${build.etc}/manifest.mf">
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.client.classes"/>
  +        <include name="org/jboss/test/retry/interfaces/**"/>
  +        <include name="org/jboss/test/retry/test/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/retry">
  +        <include name="*.*"/>
  +      </fileset>
  +    </jar>
  +
  +    <!-- build retry.jar -->
  +    <jar jarfile="${build.lib}/retry.jar">
  +      <fileset dir="${build.classes}">
  +        <patternset refid="jboss.test.util.ejb.set"/>
  +        <include name="org/jboss/test/retry/interfaces/**"/>
  +        <include name="org/jboss/test/retry/bean/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/retry">
  +        <include name="**/*.xml"/>
  +      </fileset>
  +    </jar>
     </target>
   
     <!-- testbean test -->
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2004-01-26 06:37:16
       | 
|   User: starksm 
  Date: 04/01/24 10:09:39
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Add a java-sql.jar build to test access to system classes in ScopingUnitTestCase
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.132 +13 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.131
  retrieving revision 1.165.2.132
  diff -u -r1.165.2.131 -r1.165.2.132
  --- build.xml	8 Jan 2004 00:12:46 -0000	1.165.2.131
  +++ build.xml	24 Jan 2004 18:06:42 -0000	1.165.2.132
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.131 2004/01/08 00:12:46 patriot1burke Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.132 2004/01/24 18:06:42 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -4033,6 +4033,18 @@
           <include name="org/jboss/test/classloader/circularity/support/Base.class"/>
         </fileset>
       </jar>
  +
  +    <!-- A jar that appears to contain java.sql classes for
  +      ScopingUnitTestCase.testSystemClasses2
  +    -->
  +    <mkdir dir="${build.classes}/java/sql" />
  +    <touch file="${build.classes}/java/sql/Fake.class" />
  +    <jar destfile="${build.lib}/java-sql.jar">
  +      <fileset dir="${build.classes}">
  +        <include name="java/sql/*"/>
  +      </fileset>
  +    </jar>
  +
       <jar jarfile="${build.lib}/ha.jar">
         <fileset dir="${build.classes}">
           <include name="org/jboss/test/classloader/circularity/support/HARMIServerImpl.class"/>
  
  
  
 | 
| 
      
      
      From: Ben W. <bw...@us...> - 2004-01-27 08:21:18
       | 
|   User: bwang00 
  Date: 04/01/27 00:20:14
  Modified:    .        build.xml
  Log:
  Added target for treecacheaop unit testing. Not quite done yet
  
  Revision  Changes    Path
  1.325     +40 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.324
  retrieving revision 1.325
  diff -u -r1.324 -r1.325
  --- build.xml	8 Jan 2004 00:37:41 -0000	1.324
  +++ build.xml	27 Jan 2004 08:20:01 -0000	1.325
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.324 2004/01/08 00:37:41 patriot1burke Exp $ -->
  +<!-- $Id: build.xml,v 1.325 2004/01/27 08:20:01 bwang00 Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -100,6 +100,8 @@
         <path refid="junitejb.junitejb.classpath"/>
         <path refid="junitejb.junitejb.classpath"/>
         <path refid="jdom.classpath"/>
  +      <path refid="javassist.classpath"/>
  +      <path refid="trove.classpath"/>
         <path refid="jgroups.jgroups.classpath"/>
   
         <!-- needed for JBossMQ selector tests -->
  @@ -5242,6 +5244,43 @@
       </junit>
     </target>
   
  +  <target name="tests-treecacheaop-unit" depends="init">
  +    <mkdir dir="${build.reports}"/>
  +    <mkdir dir="${build.testlog}"/>
  +    <junit dir="${module.output}"
  +	   printsummary="${junit.printsummary}"
  +	   haltonerror="${junit.haltonerror}"
  +	   haltonfailure="${junit.haltonfailure}"
  +	   fork="${junit.fork}"
  +	   timeout="${junit.timeout}"
  +	   jvm="${junit.jvm}">
  +
  +      <jvmarg value="-Djava.system.class.loader=org.jboss.aop.standalone.SystemClassLoader"/>
  +      <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
  +      <sysproperty key="build.testlog" value="${build.testlog}"/>
  +      <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/>
  +
  +      <classpath>
  +        <pathelement location="${build.classes}"/>
  +        <pathelement location="${build.resources}/cache/standalone"/>
  +        <path refid="tests.classpath"/>
  +      </classpath>
  +
  +      <formatter type="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/cache/test/standAloneAop/*AopTest.class"/>
  +        </fileset>
  +      </batchtest>
  +    </junit>
  +  </target>
  +
  +
     <!--
        | Tests that need to be run by loading the testcase code from a client
        | jar rather than the build.classes.dir. Typically these tests need to
  
  
  
 | 
| 
      
      
      From: Claudio V. <ca...@us...> - 2004-01-27 09:32:23
       | 
|   User: cazzius 
  Date: 04/01/27 01:31:23
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  fixed url for codebase: file:// is not a valid url
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.133 +2 -2      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.132
  retrieving revision 1.165.2.133
  diff -u -r1.165.2.132 -r1.165.2.133
  --- build.xml	24 Jan 2004 18:06:42 -0000	1.165.2.132
  +++ build.xml	27 Jan 2004 09:31:22 -0000	1.165.2.133
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.132 2004/01/24 18:06:42 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.133 2004/01/27 09:31:22 cazzius Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -2603,7 +2603,7 @@
         <copy todir="${build.lib}" filtering="true" overwrite="true"
            file="${source.resources}/jmx/archivestest-service.xml">
            <filterset>
  -            <filter token="codebase" value="file://${codebaseURL}"/>
  +            <filter token="codebase" value="file:/${codebaseURL}"/>
            </filterset>
         </copy>
     </target>
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2004-01-27 17:03:31
       | 
|   User: starksm 
  Date: 04/01/27 09:02:26
  Modified:    .        build.xml
  Log:
  Update the _jars-classpath for addition tests merged from 3.2
  
  Revision  Changes    Path
  1.326     +36 -2     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.325
  retrieving revision 1.326
  diff -u -r1.325 -r1.326
  --- build.xml	27 Jan 2004 08:20:01 -0000	1.325
  +++ build.xml	27 Jan 2004 17:02:22 -0000	1.326
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.325 2004/01/27 08:20:01 bwang00 Exp $ -->
  +<!-- $Id: build.xml,v 1.326 2004/01/27 17:02:22 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -4463,10 +4463,31 @@
         </fileset>
       </jar>
   
  +    <!-- A jar that appears to contain java.sql classes for
  +      ScopingUnitTestCase.testSystemClasses2
  +    -->
  +    <mkdir dir="${build.classes}/java/sql" />
  +    <touch file="${build.classes}/java/sql/Fake.class" />
  +    <jar destfile="${build.lib}/java-sql.jar">
  +      <fileset dir="${build.classes}">
  +        <include name="java/sql/*"/>
  +      </fileset>
  +    </jar>
  +
  +    <jar jarfile="${build.lib}/ha.jar">
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/classloader/circularity/support/HARMIServerImpl.class"/>
  +        <include name="org/jboss/test/classloader/circularity/support/HARMIServer.class"/>
  +        <include name="org/jboss/test/classloader/circularity/support/HARMIServerImpl_Stub.class"/>
  +      </fileset>
  +    </jar>
  +
  +
       <jar jarfile="${build.lib}/circularity.sar">
         <metainf dir="${source.resources}/classloader/circularity" />
         <fileset dir="${build.classes}">
  -        <include name="org/jboss/test/classloader/circularity/**"/>
  +        <include name="org/jboss/test/classloader/circularity/*"/>
  +        <include name="org/jboss/test/classloader/circularity/test/*"/>
         </fileset>
       </jar>
   
  @@ -4657,6 +4678,19 @@
         </classes>
       </war>
   
  +    <war warfile="${build.lib}/oldxerces.war"
  +      webxml="${build.resources}/classloader/scoping/override/xml/web.xml">
  +      <webinf dir="${build.resources}/classloader/scoping/override/xml">
  +         <include name="jboss-web.xml" />
  +      </webinf>
  +      <lib dir="${build.resources}/classloader/scoping/override/xml">
  +        <include name="*.jar"/>
  +      </lib>
  +      <fileset dir="${build.resources}/classloader/scoping/override/xml">
  +        <include name="test.jsp" />
  +      </fileset>
  +    </war>
  +
       <!-- build classpath.sar -->
       <jar jarfile="${build.lib}/classpath.sar">
         <metainf dir="${source.resources}/classloader/classpath">
  
  
  
 | 
| 
      
      
      From: Ben W. <bw...@us...> - 2004-01-28 02:12:55
       | 
|   User: bwang00 
  Date: 04/01/27 18:11:50
  Modified:    .        build.xml
  Log:
  Added standalone-aop-unit test cases
  
  Revision  Changes    Path
  1.327     +8 -3      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.326
  retrieving revision 1.327
  diff -u -r1.326 -r1.327
  --- build.xml	27 Jan 2004 17:02:22 -0000	1.326
  +++ build.xml	28 Jan 2004 02:11:50 -0000	1.327
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.326 2004/01/27 17:02:22 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.327 2004/01/28 02:11:50 bwang00 Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -5056,6 +5056,7 @@
     <target name="tests" description="Execute all tests."
       depends="init,
                tests-standard-unit,
  +             tests-standalone-aop-unit,
                tests-client-unit,
                tests-security-basic-unit,
                tests-standard-stress,
  @@ -5067,14 +5068,14 @@
                tests-jbossmx-compliance,
                tests-jbossmx-implementation,
                tests-jbossmx-performance,
  -	          tests-iiop-stress,
  +	     tests-iiop-stress,
                tests-report">
     </target>
   
  -
     <target name="tests-unit" description="Execute all unit tests."
       depends="init,
                tests-standard-unit,
  +             tests-standalone-aop-unit,
                tests-client-unit,
                tests-security-basic-unit,
                tests-jsr77-unit,
  @@ -5278,6 +5279,10 @@
       </junit>
     </target>
   
  +  <target name="tests-standalone-aop-unit" depends="compile">
  +    <antcall target="tests-treecacheaop-unit" inheritRefs="true"/>
  +  </target>
  +
     <target name="tests-treecacheaop-unit" depends="init">
       <mkdir dir="${build.reports}"/>
       <mkdir dir="${build.testlog}"/>
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2004-01-29 11:58:31
       | 
|   User: starksm 
  Date: 04/01/28 14:28:47
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Add tests of an external xml xmbean pm
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.134 +10 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.133
  retrieving revision 1.165.2.134
  diff -u -r1.165.2.133 -r1.165.2.134
  --- build.xml	27 Jan 2004 09:31:22 -0000	1.165.2.133
  +++ build.xml	28 Jan 2004 22:28:46 -0000	1.165.2.134
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.133 2004/01/27 09:31:22 cazzius Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.134 2004/01/28 22:28:46 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -2516,11 +2516,20 @@
         <metainf dir="${build.resources}/jmx/xmbean/user2" />
         <fileset dir="${build.classes}">
           <include name="org/jboss/test/jmx/xmbean/User2.class"/>
  +        <include name="org/jboss/test/jmx/xmbean/XMLFilePersistenceManager.class"/>
  +      </fileset>
  +    </jar>
  +    <jar jarfile="${build.lib}/user3-xmbean.sar">
  +      <metainf dir="${build.resources}/jmx/xmbean/user2" />
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/jmx/xmbean/User2.class"/>
  +        <include name="org/jboss/test/jmx/xmbean/XMLFilePersistenceManager.class"/>
         </fileset>
       </jar>
       <copy todir="${build.lib}">
         <fileset dir="${build.resources}/jmx/xmbean">
           <include name="RemoveUser2Store.bsh"/>
  +        <include name="RemoveUser3Store.bsh"/>
         </fileset>
       </copy>
   
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2004-01-30 18:13:17
       | 
|   User: starksm 
  Date: 04/01/29 21:03:29
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Remove the missingclass.sar
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.135 +2 -8      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.134
  retrieving revision 1.165.2.135
  diff -u -r1.165.2.134 -r1.165.2.135
  --- build.xml	28 Jan 2004 22:28:46 -0000	1.165.2.134
  +++ build.xml	30 Jan 2004 05:03:28 -0000	1.165.2.135
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.134 2004/01/28 22:28:46 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.135 2004/01/30 05:03:28 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -2550,13 +2550,7 @@
         </fileset>
       </jar>
   
  -    <!-- missing classes test -->
  -    <jar jarfile="${build.lib}/missingclassmbean.jar">
  -      <fileset dir="${build.classes}">
  -        <include name="org/jboss/test/jmx/missingclass/*.class"/>
  -      </fileset>
  -    </jar>
  -
  +    <!-- Compile the rmi jmx listener stub -->
       <rmic base="${build.classes}"
         sourcebase="${build.classes}"
         verify="${rmic.verify}"
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2004-01-31 02:15:54
       | 
|   User: starksm 
  Date: 04/01/29 22:18:07
  Modified:    .        build.xml
  Log:
  Update the jmx test jars
  
  Revision  Changes    Path
  1.328     +26 -7     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.327
  retrieving revision 1.328
  diff -u -r1.327 -r1.328
  --- build.xml	28 Jan 2004 02:11:50 -0000	1.327
  +++ build.xml	30 Jan 2004 06:18:07 -0000	1.328
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.327 2004/01/28 02:11:50 bwang00 Exp $ -->
  +<!-- $Id: build.xml,v 1.328 2004/01/30 06:18:07 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -2643,11 +2643,20 @@
         <metainf dir="${build.resources}/jmx/xmbean/user2" />
         <fileset dir="${build.classes}">
           <include name="org/jboss/test/jmx/xmbean/User2.class"/>
  +        <include name="org/jboss/test/jmx/xmbean/XMLFilePersistenceManager.class"/>
  +      </fileset>
  +    </jar>
  +    <jar jarfile="${build.lib}/user3-xmbean.sar">
  +      <metainf dir="${build.resources}/jmx/xmbean/user2" />
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/jmx/xmbean/User2.class"/>
  +        <include name="org/jboss/test/jmx/xmbean/XMLFilePersistenceManager.class"/>
         </fileset>
       </jar>
       <copy todir="${build.lib}">
         <fileset dir="${build.resources}/jmx/xmbean">
           <include name="RemoveUser2Store.bsh"/>
  +        <include name="RemoveUser3Store.bsh"/>
         </fileset>
       </copy>
   
  @@ -2668,12 +2677,22 @@
         </fileset>
       </jar>
   
  -    <!-- missing classes test -->
  -    <jar jarfile="${build.lib}/missingclassmbean.jar">
  -      <fileset dir="${build.classes}">
  -        <include name="org/jboss/test/jmx/missingclass/*.class"/>
  -      </fileset>
  -    </jar>
  +    <!-- Compile the rmi jmx listener stub -->
  +    <rmic base="${build.classes}"
  +      sourcebase="${build.classes}"
  +      verify="${rmic.verify}"
  +      iiop="${rmic.iiop}"
  +      iiopopts="${rmic.iiopops}"
  +      idl="${rmic.idl}"
  +      idlopts="${rmic.idlops}"
  +      debug="${rmic.debug}"
  +      stubVersion="${rmic.stubVersion}"
  +    >
  +      <classpath refid="tests.classpath"/>
  +      <include name="${rmic.includes}"/>
  +      <exclude name="${rmic.excludes}"/>
  +      <include name="org/jboss/test/jmx/invoker/Listener.class" />
  +    </rmic>
   
       <!-- ha-invoker adaptor sar -->
       <jar jarfile="${build.lib}/ha-invoker.sar">
  
  
  
 | 
| 
      
      
      From: Dr. C. G. J. <cg...@us...> - 2004-02-02 13:39:46
       | 
|   User: cgjung  
  Date: 04/02/02 05:37:46
  Modified:    .        build.xml
  Log:
  ws4ee: test "canonical" mappings for unmapped java beans.
  
  Revision  Changes    Path
  1.329     +3 -1      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.328
  retrieving revision 1.329
  diff -u -r1.328 -r1.329
  --- build.xml	30 Jan 2004 06:18:07 -0000	1.328
  +++ build.xml	2 Feb 2004 13:37:46 -0000	1.329
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.328 2004/01/30 06:18:07 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.329 2004/02/02 13:37:46 cgjung Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -3924,6 +3924,7 @@
               <include name="org/jboss/test/webservice/ws4eecomplex/Complex1Bean.class"/>
               <include name="org/jboss/test/webservice/ws4eecomplex/Complex1.class"/>
               <include name="org/jboss/test/webservice/ws4eecomplex/ComplexSer1.class"/>
  +            <include name="org/jboss/test/webservice/ws4eecomplex/ComplexSer2.class"/>
               <include name="org/jboss/test/webservice/ws4eecomplex/Complex1Home.class"/>
               <include name="org/jboss/test/webservice/ws4eecomplex/Complex1Ws.class"/>
            </fileset>
  @@ -3949,6 +3950,7 @@
               <include name="org/jboss/test/webservice/ws4eecomplex/Complex1Ws.class"/>
               <include name="org/jboss/test/webservice/ws4eecomplex/Complex1WsClientServlet.class"/>
               <include name="org/jboss/test/webservice/ws4eecomplex/ComplexSer1.class"/>
  +            <include name="org/jboss/test/webservice/ws4eecomplex/ComplexSer2.class"/>
            </classes>
            <webinf dir="${source.resources}/webservice/ws4eecomplex/META-INF">
               <include name="Complex1.wsdl"/>
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2004-02-03 18:10:32
       | 
|   User: ejort   
  Date: 04/02/03 08:50:04
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Fix the codebase url
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.136 +2 -2      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.135
  retrieving revision 1.165.2.136
  diff -u -r1.165.2.135 -r1.165.2.136
  --- build.xml	30 Jan 2004 05:03:28 -0000	1.165.2.135
  +++ build.xml	3 Feb 2004 16:50:03 -0000	1.165.2.136
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.135 2004/01/30 05:03:28 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.136 2004/02/03 16:50:03 ejort Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -2606,7 +2606,7 @@
         <copy todir="${build.lib}" filtering="true" overwrite="true"
            file="${source.resources}/jmx/archivestest-service.xml">
            <filterset>
  -            <filter token="codebase" value="file:/${codebaseURL}"/>
  +            <filter token="codebase" value="file://${codebaseURL}"/>
            </filterset>
         </copy>
     </target>
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2004-02-03 19:47:56
       | 
|   User: ejort   
  Date: 04/02/03 08:57:50
  Modified:    .        build.xml
  Log:
  Fix the codebase url
  
  Revision  Changes    Path
  1.330     +2 -2      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.329
  retrieving revision 1.330
  diff -u -r1.329 -r1.330
  --- build.xml	2 Feb 2004 13:37:46 -0000	1.329
  +++ build.xml	3 Feb 2004 16:57:50 -0000	1.330
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.329 2004/02/02 13:37:46 cgjung Exp $ -->
  +<!-- $Id: build.xml,v 1.330 2004/02/03 16:57:50 ejort Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -2733,7 +2733,7 @@
         <copy todir="${build.lib}" filtering="true" overwrite="true"
            file="${source.resources}/jmx/archivestest-service.xml">
            <filterset>
  -            <filter token="codebase" value="file:/${codebaseURL}"/>
  +            <filter token="codebase" value="file://${codebaseURL}"/>
            </filterset>
         </copy>
     </target>
  
  
  
 | 
| 
      
      
      From: Bill B. <pat...@us...> - 2004-02-04 02:23:20
       | 
|   User: patriot1burke
  Date: 04/02/03 18:21:05
  Modified:    .        build.xml
  Log:
  added precompiler support including an ANT task to do the precompilation.  See testsuite for an example
  <aopc>
  
  Added standalone unit test that uses precompiler.
  
  Revision  Changes    Path
  1.331     +52 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.330
  retrieving revision 1.331
  diff -u -r1.330 -r1.331
  --- build.xml	3 Feb 2004 16:57:50 -0000	1.330
  +++ build.xml	4 Feb 2004 02:21:04 -0000	1.331
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.330 2004/02/03 16:57:50 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.331 2004/02/04 02:21:04 patriot1burke Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -4842,6 +4842,21 @@
           <include name="META-INF/jboss-service.xml"/>
         </fileset>
       </jar>
  +    <!-- ok, we have created the loadtime jars, let us now precompile the classes for standalone test -->
  +    <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath"/>
  +    <path id="aop.task.classpath">
  +      <path refid="javassist.classpath"/>
  +      <path refid="trove.classpath"/>
  +      <path refid="jboss.aop.classpath"/>
  +      <path refid="jboss.common.classpath"/>
  +    </path>
  +    <aopc  compilerclasspathref="aop.task.classpath">
  +       <classpath refid="thirdparty.classpath"/>
  +       <classpath path="${build.classes}"/>
  +       <src path="${build.classes}"/>
  +       <include name="org/jboss/test/aop/bean/**"/>
  +       <aoppath path="${source.resources}/aop/META-INF/jboss-aop.xml"/>
  +    </aopc>
     </target>
   
   
  @@ -5302,6 +5317,7 @@
   
     <target name="tests-standalone-aop-unit" depends="compile">
       <antcall target="tests-treecacheaop-unit" inheritRefs="true"/>
  +    <antcall target="tests-baseaop-unit" inheritRefs="true"/>
     </target>
   
     <target name="tests-treecacheaop-unit" depends="init">
  @@ -5340,6 +5356,41 @@
       </junit>
     </target>
   
  +  <target name="test-baseaop-unit" depends="init">
  +    <mkdir dir="${build.reports}"/>
  +    <mkdir dir="${build.testlog}"/>
  +    <junit dir="${module.output}"
  +	   printsummary="${junit.printsummary}"
  +	   haltonerror="${junit.haltonerror}"
  +	   haltonfailure="${junit.haltonfailure}"
  +	   fork="${junit.fork}"
  +	   timeout="${junit.timeout}"
  +	   jvm="${junit.jvm}">
  +
  +      <sysproperty key="jboss.aop.path" file="${source.resources}/aop/META-INF/jboss-aop.xml"/>
  +      <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
  +      <sysproperty key="build.testlog" value="${build.testlog}"/>
  +      <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/>
  +
  +      <classpath>
  +        <pathelement location="${build.classes}"/>
  +        <path refid="tests.classpath"/>
  +      </classpath>
  +
  +      <formatter type="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/StandaloneTest.class"/>
  +        </fileset>
  +      </batchtest>
  +    </junit>
  +  </target>
  +
   
     <!--
        | Tests that need to be run by loading the testcase code from a client
  
  
  
 | 
| 
      
      
      From: Francisco R. <rev...@us...> - 2004-02-11 16:13:25
       | 
|   User: reverbel
  Date: 04/02/11 08:09:01
  Modified:    .        build.xml
  Log:
  New property setting ("-Djacorb.interop.strict_check_on_tc_creation=off")
  for JacORB 2.1
  
  Revision  Changes    Path
  1.332     +8 -6      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.331
  retrieving revision 1.332
  diff -u -r1.331 -r1.332
  --- build.xml	4 Feb 2004 02:21:04 -0000	1.331
  +++ build.xml	11 Feb 2004 16:09:00 -0000	1.332
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.331 2004/02/04 02:21:04 patriot1burke Exp $ -->
  +<!-- $Id: build.xml,v 1.332 2004/02/11 16:09:00 reverbel Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -6077,10 +6077,11 @@
         <jvmarg value="-Dorg.omg.CORBA.ORBClass=org.jacorb.orb.ORB"/>
         <jvmarg value="-Dorg.omg.CORBA.ORBSingletonClass=org.jacorb.orb.ORBSingleton"/>
         <jvmarg value="-Djacorb.orb.print_version=off"/>
  +      <jvmarg value="-Djacorb.log.default.verbosity=0"/>
  +      <jvmarg value="-Djacorb.interop.strict_check_on_tc_creation=off"/>
  +      <jvmarg value="-Djacorb.log.loggerFactory=org.jboss.util.Log4jLoggerFactory"/>
         <jvmarg value="-Djacorb.security.ssl.client.supported_options=0"/>
         <jvmarg value="-Djacorb.security.ssl.client.required_options=0"/>
  -      <sysproperty key="jacorb.verbosity" value="0"/>
  -      <jvmarg value="-Djacorb.log.loggerFactory=org.jboss.util.Log4jLoggerFactory"/>
         <jvmarg value="-Djava.security.manager"/>
         <sysproperty key="java.security.policy"
   		   value="${build.resources}/security/tst.policy"/>
  @@ -6244,11 +6245,12 @@
   
         <jvmarg value="-Dorg.omg.CORBA.ORBClass=org.jacorb.orb.ORB"/>
         <jvmarg value="-Dorg.omg.CORBA.ORBSingletonClass=org.jacorb.orb.ORBSingleton"/>
  -      <jvmarg value="-Djacorb.verbosity=0"/>
  -      <jvmarg value="-Djacorb.security.ssl.client.supported_options=0"/>
  -      <jvmarg value="-Djacorb.security.ssl.client.required_options=0"/>
         <jvmarg value="-Djacorb.orb.print_version=off"/>
  +      <jvmarg value="-Djacorb.log.default.verbosity=0"/>
  +      <jvmarg value="-Djacorb.interop.strict_check_on_tc_creation=off"/>
         <jvmarg value="-Djacorb.log.loggerFactory=org.jboss.util.Log4jLoggerFactory"/>
  +      <jvmarg value="-Djacorb.security.ssl.client.supported_options=0"/>
  +      <jvmarg value="-Djacorb.security.ssl.client.required_options=0"/>
         <jvmarg value="-Djava.security.manager"/>
         <jvmarg value="-Djava.security.policy==${build.resources}/${test}/client.policy"/>
   
  
  
  
 | 
| 
      
      
      From: Ben W. <bw...@us...> - 2004-02-15 01:27:51
       | 
|   User: bwang00 
  Date: 04/02/14 17:21:03
  Modified:    .        build.xml
  Log:
  Added cache specific config
  
  Revision  Changes    Path
  1.333     +10 -2     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.332
  retrieving revision 1.333
  diff -u -r1.332 -r1.333
  --- build.xml	11 Feb 2004 16:09:00 -0000	1.332
  +++ build.xml	15 Feb 2004 01:21:02 -0000	1.333
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.332 2004/02/11 16:09:00 reverbel Exp $ -->
  +<!-- $Id: build.xml,v 1.333 2004/02/15 01:21:02 bwang00 Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -4862,6 +4862,14 @@
   
       <!-- cache JARs -->
       <target name="_jars-cache">
  +        <!-- Not much to do with jar, but ... -->
  +        <mkdir dir="${build.resources}/META-INF"/>
  +        <copy todir="${build.resources}/META-INF" filtering="no">
  +          <fileset dir="${source.resources}/cache/META-INF">
  +             <include name="local-service*.xml"/>
  +          </fileset>
  +        </copy>
  +
           <!-- build cachetest.jar -->
           <jar jarfile="${build.lib}/cachetest.jar"
   	    manifest="${build.resources}/cache/manifest.mf">
  @@ -4879,7 +4887,7 @@
           -->
           <copy file="${build.resources}/cache/META-INF/tree-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"/>
  
  
  
 | 
| 
      
      
      From: Ben W. <bw...@us...> - 2004-02-15 01:37:32
       | 
|   User: bwang00 
  Date: 04/02/14 17:30:43
  Modified:    .        build.xml
  Log:
  Copy more confi xml
  
  Revision  Changes    Path
  1.334     +2 -2      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.333
  retrieving revision 1.334
  diff -u -r1.333 -r1.334
  --- build.xml	15 Feb 2004 01:21:02 -0000	1.333
  +++ build.xml	15 Feb 2004 01:30:42 -0000	1.334
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.333 2004/02/15 01:21:02 bwang00 Exp $ -->
  +<!-- $Id: build.xml,v 1.334 2004/02/15 01:30:42 bwang00 Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -4866,7 +4866,7 @@
           <mkdir dir="${build.resources}/META-INF"/>
           <copy todir="${build.resources}/META-INF" filtering="no">
             <fileset dir="${source.resources}/cache/META-INF">
  -             <include name="local-service*.xml"/>
  +             <include name="*-service*.xml"/>
             </fileset>
           </copy>
   
  
  
  
 | 
| 
      
      
      From: Francisco R. <rev...@us...> - 2004-02-16 02:31:23
       | 
|   User: reverbel
  Date: 04/02/15 18:23:47
  Modified:    .        build.xml
  Log:
  Add test case for IIOP UserTransaction.
  
  Revision  Changes    Path
  1.335     +34 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.334
  retrieving revision 1.335
  diff -u -r1.334 -r1.335
  --- build.xml	15 Feb 2004 01:30:42 -0000	1.334
  +++ build.xml	16 Feb 2004 02:23:46 -0000	1.335
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.334 2004/02/15 01:30:42 bwang00 Exp $ -->
  +<!-- $Id: build.xml,v 1.335 2004/02/16 02:23:46 reverbel Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -1321,6 +1321,7 @@
                      _jars-hellojrmpiiop,
                      _jars-iiop,
                      _jars-excepiiop,
  +                   _jars-txiiop,
                      _jars-marathon,
                      _jars-entity,
                      _jars-tm,
  @@ -1873,6 +1874,34 @@
       </jar>
     </target>
   
  +  <!-- txiiop test -->
  +  <target name="_jars-txiiop">
  +    <mkdir dir="${build.lib}"/>
  +
  +    <!-- build txiioptest.jar -->
  +    <jar jarfile="${build.lib}/txiioptest.jar"
  +        manifest="${build.etc}/manifest.mf">
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.client.classes"/>
  +        <include name="org/jboss/test/txiiop/interfaces/**"/>
  +        <include name="org/jboss/test/txiiop/test/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/txiiop">
  +        <include name="*.*"/>
  +      </fileset>
  +    </jar>
  +
  +    <!-- build txiiop.jar -->
  +    <jar jarfile="${build.lib}/txiiop.jar">
  +      <metainf dir="${build.resources}/txiiop/META-INF" />
  +      <fileset dir="${build.classes}">
  +        <patternset refid="jboss.test.util.ejb.set"/>
  +        <include name="org/jboss/test/txiiop/interfaces/**"/>
  +        <include name="org/jboss/test/txiiop/ejb/**"/>
  +      </fileset>
  +    </jar>
  +  </target>
  +
     <!-- idgen test -->
     <target name="_jars-idgen">
       <mkdir dir="${build.lib}"/>
  @@ -6090,6 +6119,8 @@
         <jvmarg value="-Djacorb.log.loggerFactory=org.jboss.util.Log4jLoggerFactory"/>
         <jvmarg value="-Djacorb.security.ssl.client.supported_options=0"/>
         <jvmarg value="-Djacorb.security.ssl.client.required_options=0"/>
  +      <jvmarg value="-DORBInitRef.NameService=corbaloc::localhost:3528/JBoss/Naming/root"/>
  +      <jvmarg value="-Dorg.omg.PortableInterceptor.ORBInitializerClass.org.jboss.tm.iiop.TxClientInterceptorInitializer"/>
         <jvmarg value="-Djava.security.manager"/>
         <sysproperty key="java.security.policy"
   		   value="${build.resources}/security/tst.policy"/>
  @@ -6259,6 +6290,8 @@
         <jvmarg value="-Djacorb.log.loggerFactory=org.jboss.util.Log4jLoggerFactory"/>
         <jvmarg value="-Djacorb.security.ssl.client.supported_options=0"/>
         <jvmarg value="-Djacorb.security.ssl.client.required_options=0"/>
  +      <jvmarg value="-DORBInitRef.NameService=corbaloc::localhost:3528/JBoss/Naming/root"/>
  +      <jvmarg value="-Dorg.omg.PortableInterceptor.ORBInitializerClass.org.jboss.tm.iiop.TxClientInterceptorInitializer"/>
         <jvmarg value="-Djava.security.manager"/>
         <jvmarg value="-Djava.security.policy==${build.resources}/${test}/client.policy"/>
   
  
  
  
 | 
| 
      
      
      From: Bill B. <pat...@us...> - 2004-02-17 23:01:33
       | 
|   User: patriot1burke
  Date: 04/02/17 14:52:30
  Modified:    .        build.xml
  Log:
  expand ejb-jar.xml and web.xml to support <service-ref> definitions.  Also removed
  support for webservicesclient.xml from ejb jars and wars because this is old news, old spec
  
  Revision  Changes    Path
  1.336     +2 -4      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.335
  retrieving revision 1.336
  diff -u -r1.335 -r1.336
  --- build.xml	16 Feb 2004 02:23:46 -0000	1.335
  +++ build.xml	17 Feb 2004 22:52:29 -0000	1.336
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.335 2004/02/16 02:23:46 reverbel Exp $ -->
  +<!-- $Id: build.xml,v 1.336 2004/02/17 22:52:29 patriot1burke Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -3905,7 +3905,6 @@
               <include name="HelloMapping.xml"/>
            </webinf>
            <webinf dir="${source.resources}/webservice/ws4eesimple-client/WEB-INF">
  -            <include name="webservicesclient.xml"/>
            </webinf>
         </war>
         <jar destfile="${build.lib}/ws4eesimple-client-ejb.jar" manifest="${build.etc}/manifest.mf">
  @@ -3986,7 +3985,6 @@
               <include name="Complex1Mapping.xml"/>
            </webinf>
            <webinf dir="${source.resources}/webservice/ws4eecomplex/WEB-INF">
  -            <include name="webservicesclient.xml"/>
            </webinf>
         </war>
   
  @@ -5776,7 +5774,7 @@
         | JBoss server distribution build that contains jboss-net.
       -->
   
  -   <target name="tests-webservice-unit" depends="maybejars">
  +   <target name="tests-webservice-unit" depends="init">
        <mkdir dir="${build.reports}"/>
        <mkdir dir="${build.testlog}"/>
        <!-- choose a testpattern via a property -->
  
  
  
 | 
| 
      
      
      From: Dr. C. G. J. <cg...@us...> - 2004-02-18 15:05:02
       | 
|   User: cgjung  
  Date: 04/02/18 06:55:25
  Modified:    .        build.xml
  Log:
  - add test case for dynamic-mbean as webservice.
  
  Revision  Changes    Path
  1.337     +2 -1      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.336
  retrieving revision 1.337
  diff -u -r1.336 -r1.337
  --- build.xml	17 Feb 2004 22:52:29 -0000	1.336
  +++ build.xml	18 Feb 2004 14:55:24 -0000	1.337
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.336 2004/02/17 22:52:29 patriot1burke Exp $ -->
  +<!-- $Id: build.xml,v 1.337 2004/02/18 14:55:24 cgjung Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -945,6 +945,7 @@
   	     excludedtags="@version,@author">
         <fileset dir="${source.java}">
           <include name="org/jboss/test/webservice/jmx/server/JMXTest.java"/>
  +        <include name="org/jboss/test/webservice/jmx/server/JMXDynamicTest.java"/>
         </fileset>
         <mbeaninterface/>
         <jbossnet webDeploymentName="JMXTest"
  
  
  
 | 
| 
      
      
      From: Bill B. <pat...@us...> - 2004-02-18 23:36:02
       | 
|   User: patriot1burke
  Date: 04/02/18 15:26:09
  Modified:    .        build.xml
  Log:
  aop bug fixes and performance improvements
  
  Revision  Changes    Path
  1.338     +2 -1      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.337
  retrieving revision 1.338
  diff -u -r1.337 -r1.338
  --- build.xml	18 Feb 2004 14:55:24 -0000	1.337
  +++ build.xml	18 Feb 2004 23:26:06 -0000	1.338
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.337 2004/02/18 14:55:24 cgjung Exp $ -->
  +<!-- $Id: build.xml,v 1.338 2004/02/18 23:26:06 patriot1burke Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -4812,6 +4812,7 @@
       <jar jarfile="${build.lib}/aoptest.aop"
            manifest="${build.etc}/manifest.mf">
         <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/aop/bean/Aspect.class"/>
           <include name="org/jboss/test/aop/bean/Person.class"/>
           <include name="org/jboss/test/aop/bean/Address.class"/>
           <include name="org/jboss/test/aop/bean/NoInterceptorsPOJO*.class"/>
  
  
  
 | 
| 
      
      
      From: Bill B. <pat...@us...> - 2004-02-25 01:02:26
       | 
|   User: patriot1burke
  Date: 04/02/24 16:47:53
  Modified:    .        build.xml
  Log:
  support for EJB Timer service.  Upmerged MadAndy's stuff and fixed a few bugs
  in it.
  
  Revision  Changes    Path
  1.339     +38 -2     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.338
  retrieving revision 1.339
  diff -u -r1.338 -r1.339
  --- build.xml	18 Feb 2004 23:26:06 -0000	1.338
  +++ build.xml	25 Feb 2004 00:47:52 -0000	1.339
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.338 2004/02/18 23:26:06 patriot1burke Exp $ -->
  +<!-- $Id: build.xml,v 1.339 2004/02/25 00:47:52 patriot1burke Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -855,6 +855,25 @@
                destdir="${build.resources}/jmx/loading/cpmanifest/META-INF"/>
       </ejbdoclet>
   
  +    <!-- EJB Timer Service Test Beans -->
  +    <mkdir dir="${build.resources}/timer/META-INF"/>
  +    <ejbdoclet destdir="${build.gen-src}"
  +	     ejbspec="2.0"
  +	     excludedtags="@version,@author">
  +      <fileset dir="${source.java}">
  +        <include name="org/jboss/test/timer/ejb/*Bean.java"/>
  +      </fileset>
  +      <packageSubstitution packages="ejb" substituteWith="interfaces"/>
  +      <remoteinterface/>
  +      <homeinterface/>
  +      <deploymentdescriptor xmlencoding ="UTF-8"
  +         destdir="${build.resources}/timer/META-INF"/>
  +      <jboss xmlencoding="UTF-8"
  +         version="3.0"
  +         destdir="${build.resources}/timer/META-INF"
  +         mergedir="${source.resources}/timer/"/>
  +    </ejbdoclet>
  +
       <!-- entity test -->
       <mkdir dir="${build.resources}/entity/entity/META-INF"/>
       <ejbdoclet destdir="${build.gen-src}"
  @@ -1324,6 +1343,7 @@
                      _jars-excepiiop,
                      _jars-txiiop,
                      _jars-marathon,
  +                   _jars-timer,
                      _jars-entity,
                      _jars-tm,
                      _jars-classloader,
  @@ -4871,7 +4891,8 @@
           <include name="META-INF/jboss-service.xml"/>
         </fileset>
       </jar>
  -    <!-- ok, we have created the loadtime jars, let us now precompile the classes for standalone test -->
  +    <!-- ok, we have created the loadtime jars, let us now precompile the classes for standalone test  -->
  +
       <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath"/>
       <path id="aop.task.classpath">
         <path refid="javassist.classpath"/>
  @@ -4937,6 +4958,21 @@
        </target>
   
   
  +  <!-- EJB Timer Service test -->
  +  <target name="_jars-timer">
  +    <!-- build session-bean-timer.jar -->
  +    <jar jarfile="${build.lib}/session-bean-timer.jar">
  +      <fileset dir="${build.classes}">
  +       <include name="org/jboss/test/timer/ejb/**"/>
  +       <include name="org/jboss/test/timer/interfaces/**"/>
  +       <include name="META-INF/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/timer/">
  +       <include name="META-INF/**"/>
  +      </fileset>
  +    </jar>
  +  </target>
  +
     <!-- entity test -->
     <target name="_jars-entity">
       <mkdir dir="${build.lib}"/>
  
  
  
 | 
| 
      
      
      From: Francisco R. <rev...@us...> - 2004-02-27 03:58:55
       | 
|   User: reverbel
  Date: 04/02/26 19:42:43
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Changes for JacORB 2.1:
     - jacorb.verbosity renamed to jacorb.log.default.verbosity
     - added jacorb.interop.strict_check_on_tc_creation=off (this was the
       default setting in previous JacORB releases, and is not anymore)
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.137 +8 -6      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.136
  retrieving revision 1.165.2.137
  diff -u -r1.165.2.136 -r1.165.2.137
  --- build.xml	3 Feb 2004 16:50:03 -0000	1.165.2.136
  +++ build.xml	27 Feb 2004 03:42:42 -0000	1.165.2.137
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.136 2004/02/03 16:50:03 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.137 2004/02/27 03:42:42 reverbel Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -5486,10 +5486,11 @@
         <jvmarg value="-Dorg.omg.CORBA.ORBClass=org.jacorb.orb.ORB"/>
         <jvmarg value="-Dorg.omg.CORBA.ORBSingletonClass=org.jacorb.orb.ORBSingleton"/>
         <jvmarg value="-Djacorb.orb.print_version=off"/>
  +      <jvmarg value="-Djacorb.log.default.verbosity=0"/>
  +      <jvmarg value="-Djacorb.interop.strict_check_on_tc_creation=off"/>
  +      <jvmarg value="-Djacorb.log.loggerFactory=org.jboss.util.Log4jLoggerFactory"/>
         <jvmarg value="-Djacorb.security.ssl.client.supported_options=0"/>
         <jvmarg value="-Djacorb.security.ssl.client.required_options=0"/>
  -      <sysproperty key="jacorb.verbosity" value="0"/>
  -      <jvmarg value="-Djacorb.log.loggerFactory=org.jboss.util.Log4jLoggerFactory"/>
         <jvmarg value="-Djava.security.manager"/>
         <sysproperty key="java.security.policy"
   		   value="${build.resources}/security/tst.policy"/>
  @@ -5651,11 +5652,12 @@
   
         <jvmarg value="-Dorg.omg.CORBA.ORBClass=org.jacorb.orb.ORB"/>
         <jvmarg value="-Dorg.omg.CORBA.ORBSingletonClass=org.jacorb.orb.ORBSingleton"/>
  -      <jvmarg value="-Djacorb.verbosity=0"/>
  -      <jvmarg value="-Djacorb.security.ssl.client.supported_options=0"/>
  -      <jvmarg value="-Djacorb.security.ssl.client.required_options=0"/>
         <jvmarg value="-Djacorb.orb.print_version=off"/>
  +      <jvmarg value="-Djacorb.log.default.verbosity=0"/>
  +      <jvmarg value="-Djacorb.interop.strict_check_on_tc_creation=off"/>
         <jvmarg value="-Djacorb.log.loggerFactory=org.jboss.util.Log4jLoggerFactory"/>
  +      <jvmarg value="-Djacorb.security.ssl.client.supported_options=0"/>
  +      <jvmarg value="-Djacorb.security.ssl.client.required_options=0"/>
         <jvmarg value="-Djava.security.manager"/>
         <jvmarg value="-Djava.security.policy==${build.resources}/${test}/client.policy"/>
   
  
  
  
 |