|
From: Hiram C. <ch...@us...> - 2002-04-21 21:15:18
|
User: chirino
Date: 02/04/21 14:15:17
Modified: . build.xml
Log:
Adding the JORAM JMS testsuite to our testsuite so that we have better JBossMQ tests.
Revision Changes Path
1.111 +44 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- build.xml 20 Apr 2002 19:31:05 -0000 1.110
+++ build.xml 21 Apr 2002 21:15:17 -0000 1.111
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.110 2002/04/20 19:31:05 reverbel Exp $ -->
+<!-- $Id: build.xml,v 1.111 2002/04/21 21:15:17 chirino Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -3124,6 +3124,49 @@
</junit>
</target>
+ <!--
+ | Run the JORAM JMS testsuite against JBossMQ
+ -->
+ <target name="tests-objectweb-jms" 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="build.testlog" value="${build.testlog}"/>
+ <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/>
+ <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/>
+ <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/>
+ <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/>
+
+ <classpath>
+ <pathelement location="${build.classes}"/>
+ <pathelement location="${build.resources}"/>
+ <path refid="tests.classpath"/>
+ </classpath>
+
+ <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter"
+ extension=".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="org/objectweb/jtests/**/*Test.class"/>
+ </fileset>
+ </batchtest>
+ </junit>
+ </target>
+
<!--
| Run a single testcase by specifing the fully qualified class name
| of the unit test using the test property, -Dtest=org.jboss.test....
|