|
From: Francisco R. <rev...@us...> - 2002-04-23 23:53:30
|
User: reverbel
Date: 02/04/23 16:53:29
Modified: . build.xml
Log:
- JacORB verbosity set to zero on iiop testcases.
- Target iiop-test now creates a test.log file.
Revision Changes Path
1.112 +7 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -r1.111 -r1.112
--- build.xml 21 Apr 2002 21:15:17 -0000 1.111
+++ build.xml 23 Apr 2002 23:53:29 -0000 1.112
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.111 2002/04/21 21:15:17 chirino Exp $ -->
+<!-- $Id: build.xml,v 1.112 2002/04/23 23:53:29 reverbel Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -2990,6 +2990,8 @@
<jvmarg value="${junit.jvm.options}"/>
<jvmarg value="-Dorg.omg.CORBA.ORBClass=org.jacorb.orb.ORB"/>
<jvmarg value="-Dorg.omg.CORBA.ORBSingletonClass=org.jacorb.orb.ORBSingleton"/>
+ <jvmarg value="-Djacorb.orb.print_version=off"/>
+ <sysproperty key="jacorb.verbosity" value="0"/>
<jvmarg value="-Djava.security.manager"/>
<sysproperty key="java.security.policy"
value="${build.resources}/security/tst.policy"/>
@@ -3092,9 +3094,13 @@
<jvmarg value="${junit.jvm.options}"/>
<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"/>
<jvmarg value="-Dorg.omg.CORBA.ORBClass=org.jacorb.orb.ORB"/>
<jvmarg value="-Dorg.omg.CORBA.ORBSingletonClass=org.jacorb.orb.ORBSingleton"/>
+ <jvmarg value="-Djacorb.verbosity=0"/>
+ <jvmarg value="-Djacorb.orb.print_version=off"/>
<jvmarg value="-Djava.security.manager"/>
<jvmarg value="-Djava.security.policy==${build.resources}/${test}/client.policy"/>
<sysproperty key="log4j.properties" file="${build.resources}/log4j.properties"/>
|