|
From: Dain S. <dsu...@us...> - 2002-07-07 23:34:38
|
User: dsundstrom
Date: 02/07/07 16:34:37
Modified: . build.xml
Log:
Bank test can now be run as an EJB 1.1 jar or an EJB 2.0 jar. An EJB 2.0
jar uses the JBossCMP persistence engine.
Revision Changes Path
1.153 +17 -3 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -r1.152 -r1.153
--- build.xml 7 Jul 2002 19:50:55 -0000 1.152
+++ build.xml 7 Jul 2002 23:34:37 -0000 1.153
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.152 2002/07/07 19:50:55 dsundstrom Exp $ -->
+<!-- $Id: build.xml,v 1.153 2002/07/07 23:34:37 dsundstrom Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -908,7 +908,20 @@
<include name="org/jboss/test/bank/ejb/**"/>
<include name="org/jboss/test/bank/beans/**"/>
</fileset>
- <fileset dir="${build.resources}/bank">
+ <fileset dir="${build.resources}/bank/ejb11">
+ <include name="**/*.xml"/>
+ </fileset>
+ </jar>
+
+ <!-- build bank.jar -->
+ <jar jarfile="${build.lib}/bank-ejb20.jar">
+ <fileset dir="${build.classes}">
+ <patternset refid="common.test.application.classes"/>
+ <include name="org/jboss/test/bank/interfaces/**"/>
+ <include name="org/jboss/test/bank/ejb/**"/>
+ <include name="org/jboss/test/bank/beans/**"/>
+ </fileset>
+ <fileset dir="${build.resources}/bank/ejb20">
<include name="**/*.xml"/>
</fileset>
</jar>
@@ -3621,6 +3634,7 @@
<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"/>
+ <sysproperty key="jbosstest.iterationcount" value="2"/>
<classpath>
<pathelement location="${build.classes}"/>
@@ -3639,7 +3653,7 @@
<fileset dir="${build.classes}">
<include name="**/bmp/**/*UnitTestCase.class"/>
<include name="**/cmp2/**/*UnitTestCase.class"/>
- <include name="**/bank/**/*UnitTestCase.class"/>
+ <include name="**/bank/**/*StressTestCase.class"/>
<include name="**/lock/**/*UnitTestCase.class"/>
<include name="**/perf/**/*UnitTestCase.class"/>
<include name="**/invokers/**/*UnitTestCase.class"/>
|