| 
      
      
      From: Francisco R. <rev...@us...> - 2003-09-26 15:59:31
       | 
|   User: reverbel
  Date: 03/09/26 08:59:29
  Modified:    .        build.xml
  Log:
  IIOP parameter passing test added to the testsuite. This test was designed
  to catch marshaling/unmarshaling bugs such as the ones I have just fixed.
  
  Revision  Changes    Path
  1.295     +32 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.294
  retrieving revision 1.295
  diff -u -r1.294 -r1.295
  --- build.xml	24 Sep 2003 21:36:53 -0000	1.294
  +++ build.xml	26 Sep 2003 15:59:28 -0000	1.295
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.294 2003/09/24 21:36:53 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.295 2003/09/26 15:59:28 reverbel Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -1122,6 +1122,7 @@
                      _jars-helloiiop,
                      _jars-bankiiop,
                      _jars-hellojrmpiiop,
  +                   _jars-iiop,
                      _jars-excepiiop,
                      _jars-marathon,
                      _jars-entity,
  @@ -1594,6 +1595,36 @@
           <patternset refid="jboss.test.util.ejb.set"/>
           <include name="org/jboss/test/hellojrmpiiop/interfaces/**"/>
           <include name="org/jboss/test/hellojrmpiiop/ejb/**"/>
  +      </fileset>
  +    </jar>
  +  </target>
  +
  +  <!-- iiop parameter passing test -->
  +  <target name="_jars-iiop">
  +    <mkdir dir="${build.lib}"/>
  +
  +    <!-- build iioptest.jar -->
  +    <jar jarfile="${build.lib}/iioptest.jar"
  +        manifest="${build.etc}/manifest.mf">
  +      <fileset dir="${build.classes}">
  +        <patternset refid="common.test.client.classes"/>
  +        <include name="org/jboss/test/iiop/interfaces/**"/>
  +        <include name="org/jboss/test/iiop/util/**"/>
  +        <include name="org/jboss/test/iiop/test/**"/>
  +      </fileset>
  +      <fileset dir="${build.resources}/iiop">
  +        <include name="*.*"/>
  +      </fileset>
  +    </jar>
  +
  +    <!-- build iiop.jar -->
  +    <jar jarfile="${build.lib}/iiop.jar">
  +      <metainf dir="${build.resources}/iiop/META-INF" />
  +      <fileset dir="${build.classes}">
  +        <patternset refid="jboss.test.util.ejb.set"/>
  +        <include name="org/jboss/test/iiop/interfaces/**"/>
  +        <include name="org/jboss/test/iiop/util/**"/>
  +        <include name="org/jboss/test/iiop/ejb/**"/>
         </fileset>
       </jar>
     </target>
  
  
  
 | 
| 
      
      
      From: Heiko W.R. <pi...@us...> - 2003-09-29 08:17:02
       | 
|   User: pilhuhn 
  Date: 03/09/29 00:47:46
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Generate a short XML summary of the test results.
  This is from Patch-797311
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.106 +29 -2     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.105
  retrieving revision 1.165.2.106
  diff -u -r1.165.2.105 -r1.165.2.106
  --- build.xml	25 Sep 2003 23:00:23 -0000	1.165.2.105
  +++ build.xml	29 Sep 2003 07:47:44 -0000	1.165.2.106
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.105 2003/09/25 23:00:23 reverbel Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.106 2003/09/29 07:47:44 pilhuhn Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -5214,7 +5214,7 @@
       <delete dir="${build.reports}"/>
     </target>
   
  -  <target name="tests-report" depends="tests-report-html, tests-report-text">
  +  <target name="tests-report" depends="tests-report-html, tests-report-text, tests-report-xml">
        <tar tarfile="${module.output}/${TIMENOW}.tgz" compression="gzip" longfile="gnu">
           <tarfileset dir="${build.reports}/html" prefix="${TIMENOW}">
              <include name="**"/>
  @@ -5266,6 +5266,33 @@
          <param name="results_web" expression="${results_web}"/>
       </style>
     </target>
  +
  +  <target name="tests-report-xml" depends="tests-report-html">
  +    <mkdir dir="${build.reports}/xml"/>
  +
  +    <style basedir="${build.reports}"
  +	   destdir="${build.reports}/xml"
  +	   extension=".xml"
  +	   style="${build.stylesheets}/shortXmlSummary.xsl"
  +	   includes="TESTS-TestSuites.xml">
  +       <param name="thedate" expression="${TIMENOW}"/>
  +       <param name="java_version" expression="${java.version}"/>
  +       <param name="java_vendor" expression="${java.vendor}"/>
  +       <param name="java_vm_specification_version" 
  +
  +expression="${java.vm.specification.version}"/>
  +       <param name="java_vm_version" expression="${java.vm.version}"/>
  +       <param name="java_vm_name" expression="${java.vm.name}"/>
  +       <param name="java_vm_info" expression="${java.vm.info}"/>
  +       <param name="java_specification_version" expression="${java.specification.version}"/>
  +       <param name="java_class_version" expression="${java.class.version}"/>
  +       <param name="os_name" expression="${os.name}"/>
  +       <param name="os_arch" expression="${os.arch}"/>
  +       <param name="os_version" expression="${os.version}"/>
  +     </style>
  +   </target>
  + 
  +
   
     <!-- include the mqstress test - remember that these tests need to be
          manually updated when the version info of the server changes
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-09-29 23:47:22
       | 
| User: starksm Date: 03/09/29 16:47:18 Modified: . Tag: Branch_3_2 build.xml Log: Move the jboss.net test to the testsuite module Revision Changes Path No revision No revision 1.165.2.107 +291 -3 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.106 retrieving revision 1.165.2.107 diff -u -r1.165.2.106 -r1.165.2.107 --- build.xml 29 Sep 2003 07:47:44 -0000 1.165.2.106 +++ build.xml 29 Sep 2003 23:47:17 -0000 1.165.2.107 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.106 2003/09/29 07:47:44 pilhuhn Exp $ --> +<!-- $Id: build.xml,v 1.165.2.107 2003/09/29 23:47:17 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -92,6 +92,7 @@ <path refid="apache.crimson.classpath"/> <path refid="apache.commons.classpath"/> <path refid="apache.log4j.classpath"/> + <path refid="apache.axis.classpath"/> <path refid="oswego.concurrent.classpath"/> <path refid="jacorb.jacorb.classpath"/> <path refid="junit.junit.classpath"/> @@ -136,6 +137,7 @@ <path refid="jboss.management.classpath"/> <path refid="jboss.transaction.classpath"/> <path refid="jboss.varia.classpath"/> + <path refid="jboss.jbossnet.classpath" /> </path> <!-- ===== --> @@ -231,6 +233,9 @@ <fileset dir="${project.thirdparty}/xdoclet/xdoclet/lib"> <include name="**/*.jar"/> </fileset> + <fileset dir="${project.root}/jboss.net/output/lib"> + <include name="xdoclet-*.jar" /> + </fileset> </path> <property name="xdoclet.task.classpath" refid="xdoclet.task.classpath"/> @@ -847,6 +852,94 @@ destdir="${build.resources}/entity/entity/META-INF"/> </ejbdoclet> +<!-- JBoss.NET services generation --> + <!-- call wsdl4j emitter --> + <java dir="${build.gen-src}" fork="yes" failOnError="true" className="org.apache.axis.wsdl.WSDL2Java"> + <arg value="-s" /> + <arg value="-d" /> <arg value="Session" /> + <arg value="-Nhttp://net.jboss.org/samples/AddressBook=org.jboss.test.webservice.addr" /> + <arg value="${source.resources}/webservice/addr/wsr/META-INF/AddressBook.wsdl" /> + <classpath refid="apache.axis.generate.classpath"/> + </java> + + <!-- call wsdl4j emitter --> + <java dir="${build.gen-src}" fork="yes" failOnError="true" className="org.apache.axis.wsdl.WSDL2Java"> + <arg value="-d" /> <arg value="Session" /> + <arg value="-Nhttp://www.xmethods.net/sd/BabelFishService.wsdl=org.jboss.test.webservice.external.babelfish" /> + <arg value="${source.resources}/webservice/external/wsr/META-INF/babelfish.wsdl" /> + <classpath refid="apache.axis.generate.classpath"/> + </java> + + <!-- call wsdl4j emitter --> + <java dir="${build.gen-src}" fork="yes" failOnError="true" className="org.apache.axis.wsdl.WSDL2Java"> + <arg value="-d" /> <arg value="Session" /> + <arg value="-Nurn:GoogleSearch=org.jboss.test.webservice.external.google" /> + <arg value="${source.resources}/webservice/external/wsr/META-INF/google.wsdl" /> + <classpath refid="apache.axis.generate.classpath"/> + </java> + + <!-- remove the empty service impl? --> + <delete file="${build.gen-src}/samples/addr/AddressBookSOAPBindingImpl.java"/> + + <taskdef name="webserviceejbdoclet" classname="xdoclet.modules.ejb.EjbDocletTask" + classpathref="xdoclet.task.classpath"/> + <taskdef name="webservicejmxdoclet" classname="xdoclet.modules.jmx.JMXDocletTask" + classpathref="xdoclet.task.classpath"/> + + <webserviceejbdoclet destdir="${build.gen-src}" + ejbspec="2.0" + excludedtags="@version,@author"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/webservice/hello/server/Hello*Bean.java"/> + <include name="org/jboss/test/webservice/hello/HelloData.java"/> + </fileset> + <entitycmp cmpspec="2.x"/> + <remoteinterface/> + <homeinterface/> + <deploymentdescriptor xmlencoding ="UTF-8" + destdir="${build.resources}/webservice/hello/ejb/META-INF"/> + <jboss xmlencoding="UTF-8" + version="3.0" + destdir="${build.resources}/webservice/hello/ejb/META-INF"/> + <jbossnet webDeploymentName="Hello" + prefix="hello" + destdir="${build.resources}/webservice/hello/wsr/META-INF" + targetNameSpace="http://net.jboss.org/hello" /> + </webserviceejbdoclet> + + <webservicejmxdoclet destdir="${build.gen-src}" + excludedtags="@version,@author"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/webservice/jmx/JMXTest.java"/> + </fileset> + <mbeaninterface/> + <jbossnet webDeploymentName="JMXTest" + prefix="jmx" + destdir="${build.resources}/webservice/jmx/wsr/META-INF" + targetNameSpace="http://net.jboss.org/jmx" /> + </webservicejmxdoclet> + + <webserviceejbdoclet destdir="${build.gen-src}" + ejbspec="2.0" + excludedtags="@version,@author"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/webservice/arrays/ArraysData.java"/> + <include name="org/jboss/test/webservice/arrays/server/ArraysBean.java"/> + </fileset> + <entitycmp cmpspec="2.x"/> + <remoteinterface/> + <homeinterface/> + <deploymentdescriptor xmlencoding ="UTF-8" + destdir="${build.resources}/webservice/arrays/ejb/META-INF"/> + <jboss xmlencoding="UTF-8" + version="3.0" + destdir="${build.resources}/webservice/arrays/ejb/META-INF"/> + <jbossnet webDeploymentName="Arrays" + prefix="arrays" + destdir="${build.resources}/webservice/arrays/wsr/META-INF" + targetNameSpace="http://net.jboss.org/arrays" /> + </webserviceejbdoclet> + </target> <target name="compile-mbean-sources" depends="init" unless="noxdoclet"> @@ -1022,7 +1115,9 @@ _jars-entity, _jars-classloader, _jars-tm, - _jars-util"> + _jars-util, + _jars-webservice + "> </target> <!-- @@ -2955,6 +3050,16 @@ </fileset> </war> + <!-- war to test DIGEST auth --> + <war warfile="${build.lib}/digest-auth.war" + webxml="${build.resources}/web/WEB-INF/digest-auth-web.xml"> + <webinf dir="${build.resources}/web/html/other/WEB-INF"> + <include name="jboss-web.xml"/> + </webinf> + <fileset dir="${build.resources}/web/html/root"> + <include name="**/*.html"/> + </fileset> + </war> <!-- build jbosstest-web.ear --> <ear earfile="${build.lib}/jbosstest-web.ear" @@ -3975,7 +4080,7 @@ <mkdir dir="${build.lib}"/> <!-- build tmtest.sar --> - <jar jarfile="${build.lib}/tmtest.sar"> + <jar destfile="${build.lib}/tmtest.sar"> <metainf dir="${build.resources}/tm"> <include name="jboss-service.xml" /> </metainf> @@ -3985,6 +4090,189 @@ </fileset> </jar> </target> + + <!-- Web services tests --> + <target name="_jars-webservice"> + <mkdir dir="${build.lib}"/> + + <!-- The addr.wsr --> + <mkdir dir="${build.resources}/addr/wsr/META-INF"/> + + <copy toFile="${build.resources}/addr/wsr/META-INF/web-service.xml" + file="${build.gen-src}/org/jboss/test/webservice/addr/deploy.wsdd"/> + + <jar destfile="${build.lib}/addr.wsr"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/webservice/addr/*.class"/> + <exclude name="**/addr/AddressBookSOAPBindingImpl.class"/> + <exclude name="**/addr/AddressBookSOAPBindingSkeleton.class"/> + </fileset> + <fileset dir="${build.resources}/webservice/addr/wsr" /> + </jar> + + <jar destfile="${build.lib}/addrtest.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/webservice/addr/*.class"/> + </fileset> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/webservice/addr/*.class"/> + </fileset> + </jar> + + <!-- The jmx.wsr --> + <jar destfile="${build.lib}/jmx.wsr"> + <fileset dir="${build.resources}/webservice/jmx/wsr"> + <include name="**/*"/> + </fileset> + </jar> + + <jar destfile="${build.lib}/jmx-test.sar"> + <fileset dir="${build.lib}"> + <include name="jmx.wsr"/> + </fileset> + <fileset dir="${build.resources}/webservice/jmx/sar/"> + <include name="**/*"/> + </fileset> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/webservice/jmx/**"/> + </fileset> + </jar> + + <!-- The wshello.ear and wsr --> + <jar destfile="${build.lib}/wshello.wsr"> + <fileset dir="${build.resources}/webservice/hello/wsr"> + <include name="**/*"/> + </fileset> + </jar> + + <jar destfile="${build.lib}/wshellotest.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/webservice/hello/**"/> + <exclude name="org/jboss/test/webservice/hello/server/**"/> + </fileset> + </jar> + + <!-- build hello.jar --> + <jar destfile="${build.lib}/wshello.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/util/**"/> + <include name="org/jboss/test/webservice/hello/**"/> + <exclude name="org/jboss/test/webservice/hello/*UnitTestCase.*"/> + </fileset> + <fileset dir="${build.resources}/webservice/hello/ejb/"> + <include name="**/*.xml"/> + </fileset> + </jar> + + <ear destfile="${build.lib}/wshello.ear" + appxml="${build.resources}/webservice/hello/ear/META-INF/application.xml"> + <fileset dir="${build.lib}"> + <include name="wshello.wsr"/> + <include name="wshello.jar"/> + </fileset> + </ear> + + <!-- The arrays.ear and arrays.wsr --> + <jar jarFile="${build.lib}/arrays.wsr"> + <fileset dir="${build.resources}/webservice/arrays/wsr"> + <include name="**/*"/> + </fileset> + </jar> + + <jar jarFile="${build.lib}/arraystest.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/webservice/arrays/**"/> + <exclude name="org/jboss/test/webservice/arrays/server/**"/> + </fileset> + </jar> + + <!-- build arrays.jar --> + <jar jarfile="${build.lib}/arrays.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/util/**"/> + <include name="org/jboss/test/webservice/arrays/**"/> + <exclude name="org/jboss/test/webservice/arrays/*UnitTestCase.*"/> + </fileset> + <fileset dir="${build.resources}/webservice/arrays/ejb/"> + <include name="**/*.xml"/> + </fileset> + </jar> + + <ear destfile="${build.lib}/arrays.ear" + appxml="${build.resources}/webservice/arrays/ear/META-INF/application.xml"> + <fileset dir="${build.lib}"> + <include name="arrays.wsr"/> + <include name="arrays.jar"/> + </fileset> + </ear> + + <!-- The store wsr and ear --> + <jar destfile="${build.lib}/store.wsr"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/webservice/store/server/**"/> + </fileset> + <fileset dir="${build.resources}/webservice/store/wsr"> + <include name="**/*"/> + </fileset> + </jar> + + <jar destfile="${build.lib}/storetest.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/webservice/store/*"/> + </fileset> + </jar> + + <!-- build store.jar --> + <jar destfile="${build.lib}/store.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/webservice/store/**"/> + <exclude name="org/jboss/test/webservice/*Test*"/> + </fileset> + <fileset dir="${build.resources}/webservice/store/jar/"> + <include name="**/*.xml"/> + </fileset> + </jar> + + <ear destfile="${build.lib}/store.ear" + appxml="${build.resources}/webservice/store/ear/META-INF/application.xml"> + <fileset dir="${build.lib}"> + <include name="store.wsr"/> + <include name="store.jar"/> + </fileset> + </ear> + + <!-- The wsexternal wsr and ear --> + <jar destfile="${build.lib}/wsexternal.wsr"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/webservice/external/google/*.class"/> + <include name="org/jboss/test/webservice/external/babelfish/*.class"/> + </fileset> + <fileset dir="${build.resources}/webservice/external/wsr/"> + <include name="**/*"/> + </fileset> + </jar> + + <jar destfile="${build.lib}/wsexternal.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/webservice/external/**/*.class"/> + <exclude name="org/jboss/test/webservice/external/google/**/*.class"/> + <exclude name="org/jboss/test/webservice/external/babelfish/**/*.class"/> + <exclude name="org/jboss/test/webservice/external/*Test*"/> + </fileset> + <fileset dir="${build.resources}/webservice/external/jar/"> + <include name="**/*"/> + </fileset> + </jar> + + <ear destfile="${build.lib}/wsexternal.ear" + appxml="${build.resources}/webservice/external/ear/META-INF/application.xml"> + <fileset dir="${build.lib}"> + <include name="wsexternal.wsr"/> + <include name="wsexternal.jar"/> + </fileset> + </ear> + + </target> <!-- ================================================================== --> <!-- Install & Release --> | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-09-29 23:56:25
       | 
|   User: starksm 
  Date: 03/09/29 16:56:24
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Comment out the digest-auth.war for now
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.108 +3 -2      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.107
  retrieving revision 1.165.2.108
  diff -u -r1.165.2.107 -r1.165.2.108
  --- build.xml	29 Sep 2003 23:47:17 -0000	1.165.2.107
  +++ build.xml	29 Sep 2003 23:56:23 -0000	1.165.2.108
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.107 2003/09/29 23:47:17 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.108 2003/09/29 23:56:23 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -3050,7 +3050,7 @@
         </fileset>
       </war>
   
  -    <!-- war to test DIGEST auth -->
  +    <!-- war to test DIGEST auth 
       <war warfile="${build.lib}/digest-auth.war"
         webxml="${build.resources}/web/WEB-INF/digest-auth-web.xml">
         <webinf dir="${build.resources}/web/html/other/WEB-INF">
  @@ -3060,6 +3060,7 @@
           <include name="**/*.html"/>
         </fileset>
       </war>
  +-->
   
       <!-- build jbosstest-web.ear -->
       <ear earfile="${build.lib}/jbosstest-web.ear"
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-09-30 21:29:13
       | 
|   User: starksm 
  Date: 03/09/30 14:29:11
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Fix the address book wsr build
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.109 +6 -7      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.108
  retrieving revision 1.165.2.109
  diff -u -r1.165.2.108 -r1.165.2.109
  --- build.xml	29 Sep 2003 23:56:23 -0000	1.165.2.108
  +++ build.xml	30 Sep 2003 21:29:07 -0000	1.165.2.109
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.108 2003/09/29 23:56:23 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.109 2003/09/30 21:29:07 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -878,8 +878,8 @@
           <classpath refid="apache.axis.generate.classpath"/>
       </java>
   
  -    <!-- remove the empty service impl? -->
  -    <delete file="${build.gen-src}/samples/addr/AddressBookSOAPBindingImpl.java"/>
  +    <!-- Delete the service impl skeleton as we have an impl -->
  +    <delete file="${build.gen-src}/org/jboss/test/webservice/addr/AddressBookSOAPBindingImpl.java"/>
   
       <taskdef name="webserviceejbdoclet" classname="xdoclet.modules.ejb.EjbDocletTask"
         classpathref="xdoclet.task.classpath"/>
  @@ -4097,16 +4097,15 @@
       <mkdir dir="${build.lib}"/>
   
       <!-- The addr.wsr -->
  -    <mkdir dir="${build.resources}/addr/wsr/META-INF"/>
  +    <mkdir dir="${build.resources}/webservice/addr/wsr/META-INF"/>
   
  -    <copy toFile="${build.resources}/addr/wsr/META-INF/web-service.xml"
  +    <copy toFile="${build.resources}/webservice/addr/wsr/META-INF/web-service.xml"
          file="${build.gen-src}/org/jboss/test/webservice/addr/deploy.wsdd"/>
   
       <jar destfile="${build.lib}/addr.wsr">
         <fileset dir="${build.classes}">
           <include name="org/jboss/test/webservice/addr/*.class"/>
  -         <exclude name="**/addr/AddressBookSOAPBindingImpl.class"/>
  -         <exclude name="**/addr/AddressBookSOAPBindingSkeleton.class"/>
  +        <exclude name="org/jboss/test/webservice/addr/AddressBookSOAPBindingStub*" />
         </fileset>
         <fileset dir="${build.resources}/webservice/addr/wsr" />
       </jar>
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2003-10-01 22:27:36
       | 
|   User: ejort   
  Date: 03/10/01 15:27:35
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Remove the cts.jar tables at undeployment
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.110 +2 -1      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.109
  retrieving revision 1.165.2.110
  diff -u -r1.165.2.109 -r1.165.2.110
  --- build.xml	30 Sep 2003 21:29:07 -0000	1.165.2.109
  +++ build.xml	1 Oct 2003 22:27:34 -0000	1.165.2.110
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.109 2003/09/30 21:29:07 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.110 2003/10/01 22:27:34 ejort Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -1316,6 +1316,7 @@
         <metainf dir="${build.resources}/cts/META-INF">
           <include name="ejb-jar.xml"/>
           <include name="jboss.xml"/>
  +        <include name="jbosscmp-jdbc.xml"/>
         </metainf>
         <fileset dir="${build.classes}">
           <patternset refid="jboss.test.util.ejb.set"/>
  
  
  
 | 
| 
      
      
      From: Heiko W.R. <pi...@us...> - 2003-10-02 10:34:39
       | 
|   User: pilhuhn 
  Date: 03/10/02 03:34:35
  Modified:    .        build.xml
  Log:
  Add the short summary in XML from Patches-797311
  
  Revision  Changes    Path
  1.296     +27 -2     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.295
  retrieving revision 1.296
  diff -u -r1.295 -r1.296
  --- build.xml	26 Sep 2003 15:59:28 -0000	1.295
  +++ build.xml	2 Oct 2003 10:34:35 -0000	1.296
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.295 2003/09/26 15:59:28 reverbel Exp $ -->
  +<!-- $Id: build.xml,v 1.296 2003/10/02 10:34:35 pilhuhn Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -5438,7 +5438,7 @@
       <delete dir="${build.reports}"/>
     </target>
   
  -  <target name="tests-report" depends="tests-report-html, tests-report-text">
  +  <target name="tests-report" depends="tests-report-html, tests-report-text, tests-report-xml">
        <tar tarfile="${module.output}/${TIMENOW}.tgz" compression="gzip" longfile="gnu">
           <tarfileset dir="${build.reports}/html" prefix="${TIMENOW}">
              <include name="**"/>
  @@ -5490,6 +5490,31 @@
          <param name="results_web" expression="${results_web}"/>
       </style>
     </target>
  +
  + <target name="tests-report-xml" depends="tests-report-html">
  +    <mkdir dir="${build.reports}/xml"/>
  +
  +    <style basedir="${build.reports}"
  +	   destdir="${build.reports}/xml"
  +	   extension=".xml"
  +	   style="${build.stylesheets}/shortXmlSummary.xsl"
  +	   includes="TESTS-TestSuites.xml">
  +       <param name="thedate" expression="${TIMENOW}"/>
  +       <param name="java_version" expression="${java.version}"/>
  +       <param name="java_vendor" expression="${java.vendor}"/>
  +       <param name="java_vm_specification_version" 
  +
  +expression="${java.vm.specification.version}"/>
  +       <param name="java_vm_version" expression="${java.vm.version}"/>
  +       <param name="java_vm_name" expression="${java.vm.name}"/>
  +       <param name="java_vm_info" expression="${java.vm.info}"/>
  +       <param name="java_specification_version" expression="${java.specification.version}"/>
  +       <param name="java_class_version" expression="${java.class.version}"/>
  +       <param name="os_name" expression="${os.name}"/>
  +       <param name="os_arch" expression="${os.arch}"/>
  +       <param name="os_version" expression="${os.version}"/>
  +     </style>
  +   </target>
   
     <!-- include the mqstress test - remember that these tests need to be
          manually updated when the version info of the server changes
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-10-05 14:31:11
       | 
| User: starksm Date: 03/10/05 07:31:09 Modified: . Tag: Branch_3_2 build.xml Log: - Remove the .ant.properties usage as this is handled by the local.properties file used everywhere else - Remove the unused xdoclet.task.classpath property as its usage would cause the clean task to fail if there was no jboss.net/output/lib dir Revision Changes Path No revision No revision 1.165.2.111 +3 -6 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.110 retrieving revision 1.165.2.111 diff -u -r1.165.2.110 -r1.165.2.111 --- build.xml 1 Oct 2003 22:27:34 -0000 1.165.2.110 +++ build.xml 5 Oct 2003 14:31:08 -0000 1.165.2.111 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.110 2003/10/01 22:27:34 ejort Exp $ --> +<!-- $Id: build.xml,v 1.165.2.111 2003/10/05 14:31:08 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -65,9 +65,8 @@ --> <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" /> + <!-- Override properties using the standard local.properties file + --> <!-- =================== --> <!-- Basic Configuration --> @@ -237,8 +236,6 @@ <include name="xdoclet-*.jar" /> </fileset> </path> - <property name="xdoclet.task.classpath" - refid="xdoclet.task.classpath"/> <property name="xdoclet.mergedir" value="${project.tools}/etc/xdoclet/templates}"/> | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-10-06 02:35:25
       | 
|   User: starksm 
  Date: 03/10/05 19:35:22
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Copy the ejb-management.jar to the testsuite lib
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.112 +4 -7      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.111
  retrieving revision 1.165.2.112
  diff -u -r1.165.2.111 -r1.165.2.112
  --- build.xml	5 Oct 2003 14:31:08 -0000	1.165.2.111
  +++ build.xml	6 Oct 2003 02:35:21 -0000	1.165.2.112
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.111 2003/10/05 14:31:08 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.112 2003/10/06 02:35:21 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -3282,12 +3282,9 @@
     <target name="_jars-jsr77">
       <mkdir dir="${build.lib}"/>
   
  -    <!-- build jsr77-test.jar -->
  -    <jar jarfile="${build.lib}/jsr77-test.jar">
  -      <fileset dir="${build.classes}">
  -       <include name="org/jboss/test/management/**"/>
  -      </fileset>
  -    </jar>
  +    <!-- Copy the ejb connector -->
  +    <copy file="${jboss.management.lib}/ejb-management.jar"
  +      todir="${build.lib}"/>
     </target>
   
     <!-- foe-deployer test -->
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2003-10-06 13:30:29
       | 
|   User: ejort   
  Date: 03/10/06 06:30:26
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Add a test for a transaction passed 'by value' in a scoped deployment (same transaction and same local jdbc connection)
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.113 +9 -1      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.112
  retrieving revision 1.165.2.113
  diff -u -r1.165.2.112 -r1.165.2.113
  --- build.xml	6 Oct 2003 02:35:21 -0000	1.165.2.112
  +++ build.xml	6 Oct 2003 13:30:25 -0000	1.165.2.113
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.112 2003/10/06 02:35:21 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.113 2003/10/06 13:30:25 ejort Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -3992,6 +3992,14 @@
         </metainf>
         <fileset dir="${build.classes}">
           <include name="org/jboss/test/classloader/classpath/**"/>
  +      </fileset>
  +    </jar>
  +
  +    <!-- build scopedtx.jar -->
  +    <jar jarfile="${build.lib}/scopedtx.jar">
  +      <metainf dir="${source.resources}/classloader/scoping/transaction/META-INF" />
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/classloader/scoping/transaction/**"/>
         </fileset>
       </jar>
     </target>
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2003-10-06 13:49:57
       | 
|   User: ejort   
  Date: 03/10/06 06:49:02
  Modified:    .        build.xml
  Log:
  Port the transaction scoping test to head
  
  Revision  Changes    Path
  1.297     +9 -1      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.296
  retrieving revision 1.297
  diff -u -r1.296 -r1.297
  --- build.xml	2 Oct 2003 10:34:35 -0000	1.296
  +++ build.xml	6 Oct 2003 13:49:01 -0000	1.297
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.296 2003/10/02 10:34:35 pilhuhn Exp $ -->
  +<!-- $Id: build.xml,v 1.297 2003/10/06 13:49:01 ejort Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -3998,6 +3998,14 @@
         </metainf>
         <fileset dir="${build.classes}">
           <include name="org/jboss/test/classloader/classpath/**"/>
  +      </fileset>
  +    </jar>
  +
  +    <!-- build scopedtx.jar -->
  +    <jar jarfile="${build.lib}/scopedtx.jar">
  +      <metainf dir="${source.resources}/classloader/scoping/transaction/META-INF" />
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/classloader/scoping/transaction/**"/>
         </fileset>
       </jar>
     </target>
  
  
  
 | 
| 
      
      
      From: Ben W. <bw...@us...> - 2003-10-08 07:37:36
       | 
|   User: bwang00 
  Date: 03/10/08 00:37:35
  Modified:    .        build.xml
  Log:
  Reactivate tree cache aop test cases (deployed and tested under all)
  
  Revision  Changes    Path
  1.298     +50 -3     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.297
  retrieving revision 1.298
  diff -u -r1.297 -r1.298
  --- build.xml	6 Oct 2003 13:49:01 -0000	1.297
  +++ build.xml	8 Oct 2003 07:37:34 -0000	1.298
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.297 2003/10/06 13:49:01 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.298 2003/10/08 07:37:34 bwang00 Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -1126,8 +1126,9 @@
                      _jars-excepiiop,
                      _jars-marathon,
                      _jars-entity,
  -                   _jars-classloader,
                      _jars-tm,
  +                   _jars-classloader,
  +                   _jars-cache,
                      _jars-util">
     </target>
   
  @@ -4002,12 +4003,14 @@
       </jar>
   
       <!-- build scopedtx.jar -->
  +<!--
       <jar jarfile="${build.lib}/scopedtx.jar">
         <metainf dir="${source.resources}/classloader/scoping/transaction/META-INF" />
         <fileset dir="${build.classes}">
           <include name="org/jboss/test/classloader/scoping/transaction/**"/>
         </fileset>
       </jar>
  +-->
     </target>
   
     <!-- aop test -->
  @@ -4121,8 +4124,49 @@
           <include name="META-INF/jboss-service.xml"/>
         </fileset>
       </jar>
  -
     </target>
  +
  +
  +    <!-- cache JARs -->
  +    <target name="_jars-cache">
  +        <!-- build cachetest.jar -->
  +        <jar jarfile="${build.lib}/cachetest.jar"
  +	    manifest="${build.resources}/cache/manifest.mf">
  +            <fileset dir="${build.classes}">
  +                <include name="org/jboss/test/cache/bean/*.class"/>
  +            </fileset>
  +            <metainf dir="${build.resources}/cache/META-INF/">
  +                 <include name="jboss.xml"/>
  +                 <include name="ejb-jar.xml"/>
  +            </metainf>
  +        </jar>
  +
  +        <!-- build cachetest.sar -->
  +        <!--
  +        -->
  +        <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"/>
  +            </fileset>
  +            <fileset dir="${build.resources}/cache">
  +                <include name="**/jboss-service.xml"/>
  +            </fileset>
  +        </jar>
  +
  +        <!-- build cachetest.aop -->
  +        <jar jarfile="${build.lib}/cachetest.aop">
  +            <fileset dir="${build.classes}">
  +                <include name="org/jboss/test/cache/bean/aop/*.class"/>
  +            </fileset>
  +            <metainf dir="${build.resources}/cache/aop/META-INF/"/>
  +        </jar>
  +
  +     </target>
  +
  +
     <!-- entity test -->
     <target name="_jars-entity">
       <mkdir dir="${build.lib}"/>
  @@ -5391,7 +5435,10 @@
        | Here you specify the testcase class, not the directory
      -->
   
  +<!--
     <target name="one-test" depends="maybejars" if="test"
  +-->
  +  <target name="one-test" depends="compile-classes-only" if="test"
   	  description="Execute a single test.">
       <mkdir dir="${build.reports}"/>
       <mkdir dir="${build.testlog}"/>
  
  
  
 | 
| 
      
      
      From: Ben W. <bw...@us...> - 2003-10-08 08:01:09
       | 
|   User: bwang00 
  Date: 03/10/08 01:01:07
  Modified:    .        build.xml
  Log:
  Forgot to restore the one-test setting
  
  Revision  Changes    Path
  1.299     +1 -4      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.298
  retrieving revision 1.299
  diff -u -r1.298 -r1.299
  --- build.xml	8 Oct 2003 07:37:34 -0000	1.298
  +++ build.xml	8 Oct 2003 08:01:00 -0000	1.299
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.298 2003/10/08 07:37:34 bwang00 Exp $ -->
  +<!-- $Id: build.xml,v 1.299 2003/10/08 08:01:00 bwang00 Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -5435,10 +5435,7 @@
        | Here you specify the testcase class, not the directory
      -->
   
  -<!--
     <target name="one-test" depends="maybejars" if="test"
  --->
  -  <target name="one-test" depends="compile-classes-only" if="test"
   	  description="Execute a single test.">
       <mkdir dir="${build.reports}"/>
       <mkdir dir="${build.testlog}"/>
  
  
  
 | 
| 
      
      
      From: Bill B. <pat...@us...> - 2003-10-23 04:04:47
       | 
|   User: patriot1burke
  Date: 03/10/21 21:31:59
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  * connector.  Added a new switch set-tx-query-timeout
  If this is true, statement.setQueryTimeout is called with the time left in the current transaction
  
  * Added a one level deep prefetch for relationships that have a field that maps to another related entity.  This only works for on-find and only if you have <read-ahead> defined for that side of the relationship
  
  * Pulled java.io.ObjectInputStream and ObjectOutputStream into common/src/main/org/jboss/io so that I could remove some synchronizations within ObjectStreamClass and minimize the class descriptor marshalling and to create a class cache for resolveClass.
  
  * Improved Pooled Invoker performance by over 100%.  It is now more than twice as fast as RMI
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.114 +4 -4      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.113
  retrieving revision 1.165.2.114
  diff -u -r1.165.2.113 -r1.165.2.114
  --- build.xml	6 Oct 2003 13:30:25 -0000	1.165.2.113
  +++ build.xml	22 Oct 2003 04:31:58 -0000	1.165.2.114
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.113 2003/10/06 13:30:25 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.114 2003/10/22 04:31:58 patriot1burke Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -206,8 +206,8 @@
   
       <!-- Override JUnit defaults -->
       <property name="junit.timeout" value="180000"/> <!-- 3 minutes -->
  -    <property name="jbosstest.iterationcount" value="10"/>
  -    <property name="jbosstest.threadcount" value="5"/>
  +    <property name="jbosstest.iterationcount" value="50"/>
  +    <property name="jbosstest.threadcount" value="200"/>
       <property name="jbosstest.beancount" value="5"/>
       <property name="jbosstest.nodeploy" value="false"/>
       <property name="junit.batchtest.todir" value="${build.reports}"/>
  @@ -5298,7 +5298,7 @@
        | name in -Dtest=dirname in tests/dirname/test/**TestCase.class
      -->
   
  -  <target name="test" depends="maybejars" if="test"
  +  <target name="test" depends="init" if="test"
   	  description="Execute a single test.">
       <mkdir dir="${build.reports}"/>
       <mkdir dir="${build.testlog}"/>
  
  
  
 | 
| 
      
      
      From: Tom E. <te...@us...> - 2003-10-25 00:33:34
       | 
|   User: telrod  
  Date: 03/10/24 17:29:40
  Modified:    .        build.xml
  Log:
  Correcting test cases due to adding of files from JMX 1.2, BRANCH_4_0_DR3
  
  Revision  Changes    Path
  1.300     +2 -1      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.299
  retrieving revision 1.300
  diff -u -r1.299 -r1.300
  --- build.xml	8 Oct 2003 08:01:00 -0000	1.299
  +++ build.xml	25 Oct 2003 00:29:40 -0000	1.300
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.299 2003/10/08 08:01:00 bwang00 Exp $ -->
  +<!-- $Id: build.xml,v 1.300 2003/10/25 00:29:40 telrod Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -95,6 +95,7 @@
         <path refid="oswego.concurrent.classpath"/>
         <path refid="jacorb.jacorb.classpath"/>
         <path refid="junit.junit.classpath"/>
  +      <path refid="dom4j.dom4j.classpath"/>
         <path refid="junitejb.junitejb.classpath"/>
         <path refid="junitejb.junitejb.classpath"/>
         <path refid="jdom.classpath"/>
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2003-10-30 14:03:35
       | 
|   User: ejort   
  Date: 03/10/30 06:03:33
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Add tests for attributes as MBeanProxies
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.115 +8 -1      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.114
  retrieving revision 1.165.2.115
  diff -u -r1.165.2.114 -r1.165.2.115
  --- build.xml	22 Oct 2003 04:31:58 -0000	1.165.2.114
  +++ build.xml	30 Oct 2003 14:03:32 -0000	1.165.2.115
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.114 2003/10/22 04:31:58 patriot1burke Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.115 2003/10/30 14:03:32 ejort Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -2028,6 +2028,13 @@
         </fileset>
         <fileset dir="${build.lib}">
           <include name="testdeploye-util.jar"/>
  +      </fileset>
  +    </jar>
  +
  +    <jar jarfile="${build.lib}/jmxproxy.sar">
  +      <metainf dir="${build.resources}/jmx/proxy/META-INF" />
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/jmx/proxy/*.class"/>
         </fileset>
       </jar>
   
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2003-10-30 14:05:10
       | 
|   User: ejort   
  Date: 03/10/30 06:05:09
  Modified:    .        build.xml
  Log:
  Add tests for attributes as MBeanProxies
  
  Revision  Changes    Path
  1.301     +8 -1      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.300
  retrieving revision 1.301
  diff -u -r1.300 -r1.301
  --- build.xml	25 Oct 2003 00:29:40 -0000	1.300
  +++ build.xml	30 Oct 2003 14:05:09 -0000	1.301
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.300 2003/10/25 00:29:40 telrod Exp $ -->
  +<!-- $Id: build.xml,v 1.301 2003/10/30 14:05:09 ejort Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -2044,6 +2044,13 @@
         </fileset>
         <fileset dir="${build.lib}">
           <include name="testdeploye-util.jar"/>
  +      </fileset>
  +    </jar>
  +
  +    <jar jarfile="${build.lib}/jmxproxy.sar">
  +      <metainf dir="${build.resources}/jmx/proxy/META-INF" />
  +      <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/jmx/proxy/*.class"/>
         </fileset>
       </jar>
   
  
  
  
 | 
| 
      
      
      From: Adrian B. <ej...@us...> - 2003-10-30 16:36:24
       | 
|   User: ejort   
  Date: 03/10/30 08:36:23
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  200 threads is too much for the default configuration
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.116 +3 -3      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.115
  retrieving revision 1.165.2.116
  diff -u -r1.165.2.115 -r1.165.2.116
  --- build.xml	30 Oct 2003 14:03:32 -0000	1.165.2.115
  +++ build.xml	30 Oct 2003 16:36:22 -0000	1.165.2.116
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.115 2003/10/30 14:03:32 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.116 2003/10/30 16:36:22 ejort Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -206,8 +206,8 @@
   
       <!-- Override JUnit defaults -->
       <property name="junit.timeout" value="180000"/> <!-- 3 minutes -->
  -    <property name="jbosstest.iterationcount" value="50"/>
  -    <property name="jbosstest.threadcount" value="200"/>
  +    <property name="jbosstest.iterationcount" value="10"/>
  +    <property name="jbosstest.threadcount" value="5"/>
       <property name="jbosstest.beancount" value="5"/>
       <property name="jbosstest.nodeploy" value="false"/>
       <property name="junit.batchtest.todir" value="${build.reports}"/>
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-11-04 07:43:23
       | 
|   User: starksm 
  Date: 03/11/03 23:43:22
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Update the circularity.sar
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.117 +11 -2     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.116
  retrieving revision 1.165.2.117
  diff -u -r1.165.2.116 -r1.165.2.117
  --- build.xml	30 Oct 2003 16:36:22 -0000	1.165.2.116
  +++ build.xml	4 Nov 2003 07:43:21 -0000	1.165.2.117
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.116 2003/10/30 16:36:22 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.117 2003/11/04 07:43:21 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -3807,11 +3807,20 @@
           <include name="org/jboss/test/classloader/circularity/support/Base.class"/>
         </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>
   
  
  
  
 | 
| 
      
      
      From: Alexey L. <lou...@us...> - 2003-11-05 21:24:49
       | 
|   User: loubyansky
  Date: 03/11/05 12:13:39
  Modified:    .        build.xml
  Log:
  removed tests for outdated architecturial features
  
  Revision  Changes    Path
  1.302     +1 -42     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.301
  retrieving revision 1.302
  diff -u -r1.301 -r1.302
  --- build.xml	30 Oct 2003 14:05:09 -0000	1.301
  +++ build.xml	5 Nov 2003 20:13:32 -0000	1.302
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.301 2003/10/30 14:05:09 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.302 2003/11/05 20:13:32 loubyansky Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -471,33 +471,6 @@
            destdir="${build.resources}/cmp2/fkstackoverflow/META-INF"
            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>
       
       <!-- dbindex and post-table-create tests -->
       <mkdir dir="${build.resources}/cmp2/idxandusersql/META-INF"/>
  @@ -3513,20 +3486,6 @@
          <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: thomas d. <tdi...@us...> - 2003-11-06 00:18:20
       | 
|   User: tdiesler
  Date: 03/11/05 16:18:19
  Modified:    .        build.xml
  Log:
  add J2EE1.4 compatibility test
  
  Revision  Changes    Path
  1.303     +101 -13   jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.302
  retrieving revision 1.303
  diff -u -r1.302 -r1.303
  --- build.xml	5 Nov 2003 20:13:32 -0000	1.302
  +++ build.xml	6 Nov 2003 00:18:19 -0000	1.303
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.302 2003/11/05 20:13:32 loubyansky Exp $ -->
  +<!-- $Id: build.xml,v 1.303 2003/11/06 00:18:19 tdiesler Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -106,8 +106,11 @@
   
         <!-- needed for proxy tests -->
         <path refid="apache.bcel.classpath"/>
  -      <!-- needed for security login module tests -->
  -      <path refid="hsqldb.hsqldb.classpath"/>
  +       <!-- needed for security login module tests -->
  +       <path refid="hsqldb.hsqldb.classpath"/>
  +
  +       <!-- needed for webservice tests -->
  +       <path refid="apache.axis.classpath"/>
       </path>
   
       <!-- ======= -->
  @@ -1088,6 +1091,7 @@
                      _jars-exception,
                      _jars-cmp2,
                      _jars-jsr77,
  +                   _jars-webservice,
                      _jars-foedeployer,
                      _jars-jbossmx,
                      _jars-aop,
  @@ -3263,17 +3267,50 @@
       </jar>
     </target>
   
  -  <!-- jsr77 test -->
  -  <target name="_jars-jsr77">
  -    <mkdir dir="${build.lib}"/>
  +   <!-- jsr77 test -->
  +   <target name="_jars-jsr77">
  +     <mkdir dir="${build.lib}"/>
  +
  +     <!-- build jsr77-test.jar -->
  +     <jar jarfile="${build.lib}/jsr77-test.jar">
  +       <fileset dir="${build.classes}">
  +        <include name="org/jboss/test/management/**"/>
  +       </fileset>
  +     </jar>
  +   </target>
   
  -    <!-- build jsr77-test.jar -->
  -    <jar jarfile="${build.lib}/jsr77-test.jar">
  -      <fileset dir="${build.classes}">
  -       <include name="org/jboss/test/management/**"/>
  -      </fileset>
  -    </jar>
  -  </target>
  +   <!-- webservice test -->
  +   <target name="_jars-webservice">
  +     <mkdir dir="${build.lib}"/>
  +
  +      <!-- build webservice-hello-ejb.jar -->
  +      <jar jarfile="${build.lib}/webservice-hello-ejb.jar">
  +        <fileset dir="${build.classes}">
  +           <include name="org/jboss/test/webservice/hello/Hello.class"/>
  +           <include name="org/jboss/test/webservice/hello/HelloBean.class"/>
  +           <include name="org/jboss/test/webservice/hello/HelloHome.class"/>
  +           <include name="org/jboss/test/webservice/hello/HelloWs.class"/>
  +        </fileset>
  +        <fileset dir="${build.resources}/webservice/hello">
  +          <include name="META-INF/ejb-jar.xml"/>
  +          <include name="META-INF/Hello.wsdl"/>
  +          <include name="META-INF/HelloMapping.xml"/>
  +          <include name="META-INF/webservices.xml"/>
  +        </fileset>
  +        <fileset dir="${build.resources}/webservice/hello">
  +          <include name="WEB-INF/webservices.xml"/>
  +        </fileset>
  +      </jar>
  +
  +      <!-- build webservice-hello-ejb.ear -->
  +      <ear earfile="${build.lib}/webservice-hello-ejb.ear"
  +         appxml="${build.resources}/webservice/hello/META-INF/server-ejb-application.xml">
  +         <fileset dir="${build.lib}">
  +           <include name="webservice-hello-ejb.jar" />
  +         </fileset>
  +      </ear>
  +
  +   </target>
   
     <!-- foe-deployer test -->
     <target name="_jars-foedeployer">
  @@ -4311,6 +4348,7 @@
                tests-client-stress,
                tests-security-basic-stress,
                tests-jsr77-unit,
  +             tests-webservice,
                tests-util-unit,
                tests-jbossmx-compliance,
                tests-jbossmx-implementation,
  @@ -4326,6 +4364,7 @@
                tests-client-unit,
                tests-security-basic-unit,
                tests-jsr77-unit,
  +             tests-webservice,
                tests-util-unit,
                tests-jbossmx-compliance,
                tests-jbossmx-implementation,
  @@ -4863,6 +4902,55 @@
         </batchtest>
       </junit>
     </target>
  +
  +   <!--
  +      | Standard webservice tests that should run successfully against a default
  +      | JBoss server distribution build.
  +    -->
  +
  +   <target name="tests-webservice" depends="maybejars">
  +     <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="${junit.jvm.options}"/>
  +       <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
  +       <sysproperty key="jbosstest.secure" value="true"/>
  +
  +       <jvmarg value="-Djava.security.manager"/>
  +       <sysproperty key="java.security.policy"
  +          value="${build.resources}/security/tst.policy"/>
  +       <sysproperty key="java.security.auth.login.config"
  +                    value="${build.resources}/security/auth.conf"/>
  +       <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}/security"/>
  +         <pathelement location="${build.resources}"/>
  +         <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="**/test/webservice/**/*TestCase.class"/>
  +         </fileset>
  +       </batchtest>
  +     </junit>
  +   </target>
   
     <!--
        | Standard marathon tests that should run successfully against a default
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-11-08 17:52:10
       | 
|   User: starksm 
  Date: 03/11/08 09:52:09
  Modified:    .        Tag: Branch_3_2_1_case1091 build.xml
  Log:
  Backport the 3.2.3RC1 class loading tests
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.62.2.1 +11 -2     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.62
  retrieving revision 1.165.2.62.2.1
  diff -u -r1.165.2.62 -r1.165.2.62.2.1
  --- build.xml	4 May 2003 19:30:23 -0000	1.165.2.62
  +++ build.xml	8 Nov 2003 17:52:07 -0000	1.165.2.62.2.1
  @@ -13,7 +13,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.62 2003/05/04 19:30:23 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.62.2.1 2003/11/08 17:52:07 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -3469,11 +3469,20 @@
           <include name="org/jboss/test/classloader/circularity/support/Base.class"/>
         </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>
   
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-11-10 07:49:54
       | 
|   User: starksm 
  Date: 03/11/09 23:49:53
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Update the xdoclet.task.classpath settings
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.118 +6 -1      jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.117
  retrieving revision 1.165.2.118
  diff -u -r1.165.2.117 -r1.165.2.118
  --- build.xml	4 Nov 2003 07:43:21 -0000	1.165.2.117
  +++ build.xml	10 Nov 2003 07:49:52 -0000	1.165.2.118
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.117 2003/11/04 07:43:21 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.118 2003/11/10 07:49:52 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -176,6 +176,10 @@
         <path refid="dependentmodule.classpath"/>
       </path>
   
  +    <path id="javac.classpath">
  +      <path refid="thirdparty.classpath"/>
  +    </path>
  +
       <!-- This module is based on Java 1.2 -->
       <property name="javac.target" value="1.2"/>
   
  @@ -236,6 +240,7 @@
            <include name="xdoclet-*.jar" />
         </fileset>
       </path>
  +    <property name="xdoclet.task.classpath" refid="xdoclet.task.classpath" />
   
       <property name="xdoclet.mergedir" value="${project.tools}/etc/xdoclet/templates}"/>
   
  
  
  
 | 
| 
      
      
      From: Scott M S. <st...@us...> - 2003-11-12 08:43:37
       | 
|   User: starksm 
  Date: 03/11/12 00:43:16
  Modified:    .        Tag: Branch_3_2 build.xml
  Log:
  Add app-client.jar and app-client.ear deployments for the j2ee
  application client deployer tests
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.165.2.119 +17 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.165.2.118
  retrieving revision 1.165.2.119
  diff -u -r1.165.2.118 -r1.165.2.119
  --- build.xml	10 Nov 2003 07:49:52 -0000	1.165.2.118
  +++ build.xml	12 Nov 2003 08:43:15 -0000	1.165.2.119
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.165.2.118 2003/11/10 07:49:52 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.165.2.119 2003/11/12 08:43:15 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -1076,6 +1076,7 @@
                      _jars-bank-new,
                      _jars-bmp,
                      _jars-cts,
  +                   _jars-client,
                      _jars-entityexc,
                      _jars-hello,
                      _jars-idgen,
  @@ -1475,6 +1476,21 @@
          </fileset>
       </ear>
   
  +  </target>
  +
  +  <target name="_jars-client">
  +    <mkdir dir="${build.lib}"/>
  +
  +    <jar destfile="${build.lib}/app-client.jar">
  +       <metainf dir="${build.resources}/client" />
  +    </jar>
  +    <ear earfile="${build.lib}/app-client.ear"
  +      appxml="${build.resources}/client/application.xml">
  +      <fileset dir="${build.lib}">
  +        <include name="cts.jar"/>
  +        <include name="app-client.jar"/>
  +      </fileset>
  +    </ear>
     </target>
   
     <!-- entityexc test -->
  
  
  
 | 
| 
      
      
      From: thomas d. <tdi...@us...> - 2003-11-12 20:14:01
       | 
|   User: tdiesler
  Date: 03/11/12 12:13:59
  Modified:    .        build.xml
  Log:
  - fixed testrun for webservice
  
  Revision  Changes    Path
  1.306     +53 -2     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.305
  retrieving revision 1.306
  diff -u -r1.305 -r1.306
  --- build.xml	12 Nov 2003 17:28:22 -0000	1.305
  +++ build.xml	12 Nov 2003 20:13:59 -0000	1.306
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.305 2003/11/12 17:28:22 cgjung Exp $ -->
  +<!-- $Id: build.xml,v 1.306 2003/11/12 20:13:59 tdiesler Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -4713,11 +4713,12 @@
                tests-client-stress,
                tests-security-basic-stress,
                tests-jsr77-unit,
  +             tests-webservice-unit,
                tests-util-unit,
                tests-jbossmx-compliance,
                tests-jbossmx-implementation,
                tests-jbossmx-performance,
  -	     tests-iiop-stress,
  +	          tests-iiop-stress,
                tests-report">
     </target>
   
  @@ -4728,6 +4729,7 @@
                tests-client-unit,
                tests-security-basic-unit,
                tests-jsr77-unit,
  +             tests-webservice-unit,
                tests-util-unit,
                tests-jbossmx-compliance,
                tests-jbossmx-implementation,
  @@ -5265,6 +5267,55 @@
         </batchtest>
       </junit>
     </target>
  +
  +   <!--
  +      | Standard webservice tests that should run successfully against a
  +      | JBoss server distribution build that contains jboss-net.
  +    -->
  +
  +   <target name="tests-webservice-unit" depends="maybejars">
  +     <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="${junit.jvm.options}"/>
  +       <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
  +       <sysproperty key="jbosstest.secure" value="true"/>
  +
  +       <jvmarg value="-Djava.security.manager"/>
  +       <sysproperty key="java.security.policy"
  +          value="${build.resources}/security/tst.policy"/>
  +       <sysproperty key="java.security.auth.login.config"
  +                    value="${build.resources}/security/auth.conf"/>
  +       <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}/security"/>
  +         <pathelement location="${build.resources}"/>
  +         <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="**/test/webservice/**/*TestCase.class"/>
  +         </fileset>
  +       </batchtest>
  +     </junit>
  +   </target>
   
     <!--
        | Standard marathon tests that should run successfully against a default
  
  
  
 |