|
From: Ovidiu F. <ov...@us...> - 2005-03-28 03:47:16
|
User: ovidiuf Date: 05/03/27 19:47:07 Modified: . Tag: Branch_4_0 build.xml Log: tests-clustering-all-stacks generates different test report sets for each stack configuration Revision Changes Path No revision No revision 1.406.2.48 +7 -4 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.406.2.47 retrieving revision 1.406.2.48 diff -u -r1.406.2.47 -r1.406.2.48 --- build.xml 25 Mar 2005 16:17:23 -0000 1.406.2.47 +++ build.xml 28 Mar 2005 03:47:05 -0000 1.406.2.48 @@ -6,7 +6,7 @@ <!-- See terms of license at http://www.gnu.org. --> <!-- ============================================================ --> -<!-- $Id: build.xml,v 1.406.2.47 2005/03/25 16:17:23 starksm Exp $ --> +<!-- $Id: build.xml,v 1.406.2.48 2005/03/28 03:47:05 ovidiuf Exp $ --> <project default="main" name="JBoss/Testsuite"> <import file="../tools/etc/buildmagic/build-common.xml"/> @@ -745,10 +745,13 @@ <target name="tests-clustering-all-stacks" description="Execute clustering tests requiring two nodes."> <!-- Test the default UDP stack --> - <antcall target="tests-clustering"/> + <antcall target="tests-clustering"> + <param name="jboss-junit-configuration" value="UDP"/> + </antcall> <!-- Test a TCP stack --> <antcall target="tests-clustering"> <param name="jgroups-stack" value="TCP"/> + <param name="jboss-junit-configuration" value="TCP"/> </antcall> </target> @@ -763,7 +766,7 @@ <antcall target="tests-clustering-unit"> <param name="cluster.includes.refid" value="cluster.includes"/> - <param name="jboss-junit-configuration" value="Default"/> + <param name="jboss-junit-configuration" value="Default-${jboss-junit-configuration}"/> </antcall> <antcall target="tests-clustering-shutdown" /> @@ -776,7 +779,7 @@ <antcall target="tests-clustering-unit"> <param name="cluster.includes.refid" value="cluster.includes"/> - <param name="jboss-junit-configuration" value="SyncModeNUseJvm"/> + <param name="jboss-junit-configuration" value="SyncModeNUseJvm-${jboss-junit-configuration}"/> </antcall> <antcall target="tests-clustering-shutdown" /> </target> |