[jboss-cvs] JBossAS SVN: r67524 - branches/Branch_4_2/ejb3.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Nov 27 18:11:09 EST 2007


Author: bstansberry at jboss.com
Date: 2007-11-27 18:11:08 -0500 (Tue, 27 Nov 2007)
New Revision: 67524

Modified:
   branches/Branch_4_2/ejb3/build-test.xml
Log:
[EJBTHREE-1136] Always clear main cache tree in StatefulTreeCache.initialize().
[EJBTHREE-856] Add some infrastructure for stress testing clustered SFSBs

Modified: branches/Branch_4_2/ejb3/build-test.xml
===================================================================
--- branches/Branch_4_2/ejb3/build-test.xml	2007-11-27 23:09:33 UTC (rev 67523)
+++ branches/Branch_4_2/ejb3/build-test.xml	2007-11-27 23:11:08 UTC (rev 67524)
@@ -3542,6 +3542,31 @@
 	        <include name="testlocal-service.xml"/>
 	     </fileset>
 	  </copy>
+
+    <jar jarfile="${build.lib}/clusteredsession-stress.jar">
+	   <!-- We include a main class to allow standalone testing -->
+	   <manifest>
+	      <attribute name="Main-Class" value="org.jboss.ejb3.test.clusteredsession.stress.StressTester"/>
+	   </manifest>
+       <fileset dir="${build.classes}">
+          <include name="org/jboss/ejb3/test/clusteredsession/stress**/*.class"/>
+       </fileset>
+    </jar>
+
+    <jar jarfile="${build.lib}/ejbthree1136.jar">
+      <fileset dir="${build.classes}">
+          <include name="org/jboss/ejb3/test/ejbthree1136/DoNothing*.class"/>
+       </fileset>
+    </jar>
+    <jar destfile="${build.lib}/ejbthree1136.sar">
+       <metainf dir="${build.resources}/test/ejbthree1136">
+          <include name="jboss-service.xml"/>
+       </metainf>
+       <fileset dir="${build.classes}">
+          <include name="org/jboss/ejb3/test/ejbthree1136/SFSB*.class"/>
+       </fileset>
+    </jar>
+    
    </target>
 
    <target name="jars" depends="ejbthree1090, mdbsessionpoolclear, ejbthree1092, removedislocal, statelesscreation, defaultremotebindings, localfromremote, clusteredjms, entityoptimisticlocking, concurrentnaming, propertyreplacement, persistenceunits, invalidtxmdb, descriptortypo, libdeployment, homeinterface, servicexmbean, arjuna, mdbtransactions, unauthenticatedprincipal, clusteredservice, invoker, classloader, 
@@ -4470,11 +4495,18 @@
 	             value="-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=n,suspend=n"/>
 	      -->
 	   </antcall>
+	   
 	   <antcall target="test-with-jvmargs" inheritRefs="true">
 	      <param name="test" value="ejbthree921"/>
 	      <param name="jvmargs" value=""/>
 	      <param name="test.extension" value="${buddy-replication-extension}"/> 
 	   </antcall>
+	   
+      <antcall target="test-with-jvmargs" inheritRefs="true">
+         <param name="test" value="ejbthree1136"/>
+         <param name="jvmargs" value=""/>
+         <param name="test.extension" value="${buddy-replication-extension}"/> 
+      </antcall>
 
    </target>
    




More information about the jboss-cvs-commits mailing list