|
From: Bill B. <pat...@us...> - 2003-03-17 01:32:11
|
User: patriot1burke
Date: 03/03/16 17:32:08
Modified: . build.xml
Log:
new aop tests
Revision Changes Path
1.225 +7 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.224
retrieving revision 1.225
diff -u -r1.224 -r1.225
--- build.xml 13 Mar 2003 19:20:45 -0000 1.224
+++ build.xml 17 Mar 2003 01:32:08 -0000 1.225
@@ -10,7 +10,7 @@
<!ENTITY mqstress SYSTEM "./mqstress.xml">
]>
-<!-- $Id: build.xml,v 1.224 2003/03/13 19:20:45 d_jencks Exp $ -->
+<!-- $Id: build.xml,v 1.225 2003/03/17 01:32:08 patriot1burke Exp $ -->
<!--+======================================================================+-->
<!--| JBoss (The OpenSource J2EE WebOS) Build File |-->
@@ -97,6 +97,7 @@
<path refid="jboss.j2ee.classpath"/>
<path refid="jboss.common.classpath"/>
<path refid="jboss.blocks.classpath"/>
+ <path refid="jboss.remoting.classpath"/>
<pathelement path="${jboss.aop.lib}/jboss-aop.jar"/>
<pathelement path="${jboss.system.lib}/testsuite-support.jar"/>
<pathelement path="${jboss.naming.lib}/jnpserver.jar"/>
@@ -2270,6 +2271,8 @@
<fileset dir="${build.classes}">
<include name="org/jboss/test/aop/bean/AOPTester.class"/>
<include name="org/jboss/test/aop/bean/AOPTesterMBean.class"/>
+ <include name="org/jboss/test/aop/bean/RemotingTester.class"/>
+ <include name="org/jboss/test/aop/bean/RemotingTesterMBean.class"/>
<include name="org/jboss/test/aop/bean/TxTester.class"/>
<include name="org/jboss/test/aop/bean/TxTesterMBean.class"/>
<include name="org/jboss/test/aop/bean/BeforeInterceptor.class"/>
@@ -4379,7 +4382,7 @@
| name in -Dtest=dirname in tests/dirname/test/**TestCase.class
-->
- <target name="test" depends="maybejars" if="test"
+ <target name="test" depends="init" if="maybejars"
description="Execute a single test.">
<mkdir dir="${build.reports}"/>
<mkdir dir="${build.log}"/>
@@ -4394,6 +4397,8 @@
jvm="${junit.jvm}">
<jvmarg value="${junit.jvm.options}"/>
+ <jvmarg value="-Djava.security.manager"/>
+ <jvmarg value="-Djava.security.policy==${build.resources}/${test}/client.policy"/>
<sysproperty key="jbosstest.deploy.dir" value="${build.lib}"/>
<sysproperty key="build.log" value="${build.log}"/>
<sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/>
|