|
From: Stephen C. <sc...@us...> - 2003-04-04 16:05:06
|
User: scoy
Date: 03/04/04 08:05:05
Modified: . Tag: Branch_3_2 build.xml
Log:
New CMR stress test
Revision Changes Path
No revision
No revision
1.165.2.54 +41 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.53
retrieving revision 1.165.2.54
diff -u -r1.165.2.53 -r1.165.2.54
--- build.xml 31 Mar 2003 06:05:40 -0000 1.165.2.53
+++ build.xml 4 Apr 2003 16:04:51 -0000 1.165.2.54
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.53 2003/03/31 06:05:40 d_jencks Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.54 2003/04/04 16:04:51 scoy Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -612,6 +612,31 @@
<session/>
</ejbdoclet>
+ <!-- cmp2 relationship stress tests -->
+ <mkdir dir="${build.resources}/cmp2/cmrstress/META-INF"/>
+ <ejbdoclet destdir="${build.gen-src}"
+ ejbspec="2.0"
+ excludedtags="@version,@author"
+ mergedir="${source.resources}/cmp2/cmrstress">
+ <fileset dir="${source.java}">
+ <include name="org/jboss/test/cmp2/cmrstress/ejb/*Bean.java"/>
+ </fileset>
+ <packageSubstitution packages="ejb" substituteWith="interfaces"/>
+ <remoteinterface/>
+ <localinterface/>
+ <homeinterface/>
+ <localhomeinterface/>
+ <utilobject cacheHomes="true" includeGUID="false" kind="physical" />
+ <deploymentdescriptor xmlencoding ="UTF-8"
+ destdir="${build.resources}/cmp2/cmrstress/META-INF"/>
+ <jboss xmlencoding="UTF-8"
+ version="3.0"
+ destdir="${build.resources}/cmp2/cmrstress/META-INF"
+ datasource="java:/DefaultDS"
+ datasourceMapping ="Hypersonic SQL"
+ />
+ </ejbdoclet>
+
<!--undeploy of broken packages-->
<mkdir dir="${build.resources}/jmx/undeploy/META-INF"/>
<ejbdoclet destdir="${build.gen-src}"
@@ -3226,6 +3251,20 @@
<include name="**/*.*"/>
</fileset>
</jar>
+
+ <!-- build cmp2-cmrstress.jar -->
+ <jar jarfile="${build.lib}/cmp2-cmrstress.jar">
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/cmp2/cmrstress/**"/>
+ </fileset>
+ <fileset dir="${build.resources}/cmp2/cmrstress">
+ <include name="**/*.*"/>
+ </fileset>
+ <zipfileset src="${junitejb.junitejb.lib}/junitejb.jar"
+ includes="net/**/*.*"/>
+ <zipfileset src="${junit.junit.lib}/junit.jar"
+ includes="junit/**/*.*"/>
+ </jar>
</target>
<!-- exception tests -->
@@ -4637,6 +4676,7 @@
<include name="**/bank/**/*StressTestCase.class"/>
<include name="**/bmp/**/*UnitTestCase.class"/>
<include name="**/cmp2/**/*UnitTestCase.class"/>
+ <include name="**/cmp2/**/*StressTestCase.class"/>
<include name="**/dbtest/**/*UnitTestCase.class"/>
<include name="**/deadlock/**/*StressTestCase.class"/>
<include name="**/entityexc/**/*UnitTestCase.class"/>
|