|
From: Bill B. <pat...@us...> - 2003-05-05 21:23:17
|
User: patriot1burke
Date: 03/05/05 14:23:16
Modified: . build.xml
Log:
tx cache testing
Revision Changes Path
1.250 +14 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.249
retrieving revision 1.250
diff -u -r1.249 -r1.250
--- build.xml 3 May 2003 23:00:48 -0000 1.249
+++ build.xml 5 May 2003 21:23:12 -0000 1.250
@@ -10,7 +10,7 @@
<!ENTITY mqstress SYSTEM "./mqstress.xml">
]>
-<!-- $Id: build.xml,v 1.249 2003/05/03 23:00:48 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.250 2003/05/05 21:23:12 patriot1burke Exp $ -->
<!--+======================================================================+-->
<!--| JBoss (The OpenSource J2EE WebOS) Build File |-->
@@ -2289,7 +2289,6 @@
<!-- aop test -->
<target name="_output:aop" depends="_output:support">
<!-- <mkdir dir="${build.lib}"/> -->
-
<!-- build aopest.jar -->
<jar jarfile="${build.lib}/aoptest.jar"
manifest="${build.etc}/manifest.mf">
@@ -2358,6 +2357,8 @@
<include name="org/jboss/test/aop/bean/TxLockTesterMBean.class"/>
<include name="org/jboss/test/aop/bean/VersionedObjectTester.class"/>
<include name="org/jboss/test/aop/bean/VersionedObjectTesterMBean.class"/>
+ <include name="org/jboss/test/aop/bean/CacheTester.class"/>
+ <include name="org/jboss/test/aop/bean/CacheTesterMBean.class"/>
<include name="org/jboss/test/aop/bean/BeforeInterceptor.class"/>
<include name="org/jboss/test/aop/bean/AfterInterceptor.class"/>
</fileset>
@@ -4515,6 +4516,17 @@
</junit>
</target>
+
+
+ <target name="run.aop.cluster.test" depends="init">
+ <java classname="org.jboss.test.aop.standalone.ClusterCacheTester" fork="yes" dir=".">
+ <classpath>
+ <pathelement location="${build.classes}"/>
+ <pathelement location="${build.resources}"/>
+ <path refid="dependentmodule.classpath"/>
+ </classpath>
+ </java>
+ </target>
<!--
| Run testcases in a single directory by specifing the test directory
|