[jboss-cvs] JBossRemoting ...
Tom Elrod
tom.elrod at jboss.com
Mon Feb 26 04:13:38 EST 2007
User: telrod
Date: 07/02/26 04:13:38
Modified: JBossRemoting Tag: remoting_2_x build.xml
Log:
Adding remoting 2.0.0.GA to versioning testing
Revision Changes Path
No revision
No revision
1.88.2.8 +28 -4 JBossRemoting/build.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/JBossRemoting/build.xml,v
retrieving revision 1.88.2.7
retrieving revision 1.88.2.8
diff -u -b -r1.88.2.7 -r1.88.2.8
--- build.xml 26 Feb 2007 09:10:08 -0000 1.88.2.7
+++ build.xml 26 Feb 2007 09:13:37 -0000 1.88.2.8
@@ -9,7 +9,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.88.2.7 2007/02/26 09:10:08 telrod Exp $ -->
+<!-- $Id: build.xml,v 1.88.2.8 2007/02/26 09:13:37 telrod Exp $ -->
<project default="most" name="JBossRemoting">
@@ -959,17 +959,17 @@
<target name="tests.versioning.2"
description="Runs remoting fuctional tests with different remoting 2 versions for client and server."
depends="jars, tests.jars">
- <antcall target="tests.versioning.all_transports" inheritrefs="true">
+ <antcall target="tests.versioning.all_transports.2" inheritrefs="true">
<param name="jboss-junit-configuration" value="${module.version.extension}"/>
<param name="client.classpath" value="${output.lib.dir}/jboss-remoting.jar"/>
<param name="server.classpath" value="${output.lib.dir}/jboss-remoting.jar"/>
</antcall>
- <antcall target="tests.versioning.all_transports" inheritrefs="true">
+ <antcall target="tests.versioning.all_transports.2" inheritrefs="true">
<param name="jboss-junit-configuration" value="2_0_0_GA-client"/>
<param name="client.classpath" value="${etc.dir}/lib/remoting_2_0_0_GA/jboss-remoting.jar"/>
<param name="server.classpath" value="${output.lib.dir}/jboss-remoting.jar"/>
</antcall>
- <antcall target="tests.versioning.all_transports" inheritrefs="true">
+ <antcall target="tests.versioning.all_transports.2" inheritrefs="true">
<param name="jboss-junit-configuration" value="2_0_0_GA-server"/>
<param name="server.classpath" value="${etc.dir}/lib/remoting_2_0_0_GA/jboss-remoting.jar"/>
<param name="client.classpath" value="${output.lib.dir}/jboss-remoting.jar"/>
@@ -977,6 +977,30 @@
</target>
+ <target name="tests.versioning.all_transports.2"
+ description="Runs remoting fuctional tests with different remoting versions for client and server."
+ depends="jars, tests.jars">
+ <mkdir dir="${output.tests.results}"/>
+ <junit printsummary="true" fork="yes" includeantruntime="true">
+ <classpath>
+ <path refid="third_party.classpath"/>
+ <path refid="tests.version.classpath"/>
+ </classpath>
+ <jvmarg value="-Dclient.path=${client.classpath}"/>
+ <jvmarg value="-Dserver.path=${server.classpath}"/>
+ <!--<jvmarg value="-Djboss.remoting.pre_2_0_compatible=${jboss.remoting.pre_2_0_compatible}"/>-->
+ <sysproperty key="jboss-junit-configuration" value="${jboss-junit-configuration}"/>
+ <formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
+ extension="-${jboss-junit-configuration}.xml"/>
+ <batchtest fork="yes" todir="${output.tests.results}"
+ haltonfailure="no">
+ <fileset dir="${tests.compile.dir}">
+ <include name="**/remoting/versioning/transport/**/*TestCase.class"/>
+ </fileset>
+ </batchtest>
+ </junit>
+ </target>
+
<target name="tests.versioning.all_transports"
description="Runs remoting fuctional tests with different remoting versions for client and server."
depends="jars, tests.jars">
More information about the jboss-cvs-commits
mailing list