|
From: Scott M S. <st...@us...> - 2002-05-28 05:40:36
|
User: starksm
Date: 02/05/27 22:40:35
Modified: . Tag: Branch_3_0 build.xml
Log:
- Add a probe.jar with the PerfUnitTestCase beans
- Add a jbosstest.nodeploy system property to the one-test target so that
a test may be rerun against a static deployment.
Revision Changes Path
No revision
No revision
1.106.2.19 +18 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.106.2.18
retrieving revision 1.106.2.19
diff -u -r1.106.2.18 -r1.106.2.19
--- build.xml 27 May 2002 18:16:13 -0000 1.106.2.18
+++ build.xml 28 May 2002 05:40:35 -0000 1.106.2.19
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.106.2.18 2002/05/27 18:16:13 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.106.2.19 2002/05/28 05:40:35 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -379,6 +379,7 @@
<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}"/>
<property name="junit.jvm.options" value="-Ddummy"/>
<echo><![CDATA[
@@ -1818,11 +1819,26 @@
<patternset refid="common.test.application.classes"/>
<include name="org/jboss/test/perf/interfaces/**"/>
<include name="org/jboss/test/perf/ejb/**"/>
+ <include name="org/jboss/test/util/Debug.class"/>
</fileset>
<metainf dir="${build.resources}/perf/META-INF">
<exclude name="jboss-service.xml" />
</metainf>
</jar>
+ <!-- build probe.jar -->
+ <jar jarfile="${build.lib}/probe.jar">
+ <fileset dir="${build.classes}">
+ <patternset refid="common.test.application.classes"/>
+ <include name="org/jboss/test/perf/interfaces/Perf*"/>
+ <include name="org/jboss/test/perf/interfaces/Probe*"/>
+ <include name="org/jboss/test/perf/ejb/Perf*"/>
+ <include name="org/jboss/test/perf/ejb/Probe*"/>
+ <include name="org/jboss/test/util/Debug.class"/>
+ </fileset>
+ <metainf dir="${build.resources}/perf/probe">
+ <exclude name="jboss-service.xml" />
+ </metainf>
+ </jar>
<!-- build secure-perf.jar -->
<jar jarfile="${build.lib}/secure-perf.jar">
@@ -3359,6 +3375,7 @@
<sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/>
<sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/>
<sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/>
+ <sysproperty key="jbosstest.nodeploy" value="${jbosstest.nodeploy}"/>
<sysproperty key="java.security.auth.login.config"
value="${build.resources}/security/auth.conf"/>
|