|
From: Bill B. <pat...@us...> - 2003-09-05 15:53:36
|
User: patriot1burke
Date: 03/09/05 08:53:28
Modified: . build.xml
Log:
fix AOP remoting
Revision Changes Path
1.289 +8 -4 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.288
retrieving revision 1.289
diff -u -r1.288 -r1.289
--- build.xml 4 Sep 2003 20:05:17 -0000 1.288
+++ build.xml 5 Sep 2003 15:53:28 -0000 1.289
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.288 2003/09/04 20:05:17 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.289 2003/09/05 15:53:28 patriot1burke Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -1319,8 +1319,8 @@
<include name="org/jboss/test/util/ejb/*"/>
</fileset>
<zipfileset src="${junit.junit.lib}/junit.jar"
- includes="junit/**/*.*"/>
- </fileset>
+ includes="junit/**/*.*">
+ </zipfileset>
</jar>
<!-- build a duplicate cts.jar with new home bindings -->
<jar jarfile="${build.lib}/cts2.jar">
@@ -4279,6 +4279,8 @@
jvm="${junit.jvm}">
<jvmarg value="${junit.jvm.options}"/>
+ <jvmarg value="-Djava.security.manager"/>
+ <jvmarg value="-Djava.security.policy==${build.resources}/client.policy"/>
<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"/>
@@ -5144,7 +5146,7 @@
| name in -Dtest=dirname in tests/dirname/test/**TestCase.class
-->
- <target name="test" depends="maybejars" if="test"
+ <target name="test" depends="init" if="test"
description="Execute a single test.">
<mkdir dir="${build.reports}"/>
<mkdir dir="${build.testlog}"/>
@@ -5159,6 +5161,8 @@
jvm="${junit.jvm}">
<jvmarg value="${junit.jvm.options}"/>
+ <jvmarg value="-Djava.security.manager"/>
+ <jvmarg value="-Djava.security.policy==${build.resources}/client.policy"/>
<sysproperty key="jbosstest.deploy.dir" value="${build.lib}"/>
<sysproperty key="build.testlog" value="${build.testlog}"/>
<sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/>
|