|
From: Adrian B. <ej...@us...> - 2004-05-27 01:43:34
|
User: ejort
Date: 04/05/26 18:43:25
Modified: . Tag: Branch_3_2 build.xml
Log:
Perform a login for the secure invoker access.
Also add auth.conf for the testsuite "test" target when running
a package's tests.
Revision Changes Path
No revision
No revision
1.165.2.153 +5 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.152
retrieving revision 1.165.2.153
diff -u -r1.165.2.152 -r1.165.2.153
--- build.xml 21 May 2004 03:31:02 -0000 1.165.2.152
+++ build.xml 27 May 2004 01:43:22 -0000 1.165.2.153
@@ -15,7 +15,7 @@
<!-- -->
<!-- ============================================================ -->
-<!-- $Id: build.xml,v 1.165.2.152 2004/05/21 03:31:02 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.153 2004/05/27 01:43:22 ejort Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -5791,13 +5791,16 @@
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"/>
<sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/>
<sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/>
<sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/>
-
+ <sysproperty key="java.security.auth.login.config"
+ value="${build.resources}/security/auth.conf"/>
<classpath>
<pathelement location="${build.classes}"/>
|