|
From: Ovidiu F. <ov...@us...> - 2004-08-26 05:57:51
|
User: ovidiuf
Date: 04/08/25 22:57:45
Modified: . Tag: Branch_3_2 build.xml
Log:
handy debugging flags for standalone and package tests; they are commented out by default
Revision Changes Path
No revision
No revision
1.165.2.162 +11 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.161
retrieving revision 1.165.2.162
diff -u -r1.165.2.161 -r1.165.2.162
--- build.xml 20 Aug 2004 23:57:42 -0000 1.165.2.161
+++ build.xml 26 Aug 2004 05:57:43 -0000 1.165.2.162
@@ -15,7 +15,7 @@
<!-- -->
<!-- ============================================================ -->
-<!-- $Id: build.xml,v 1.165.2.161 2004/08/20 23:57:42 tdiesler Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.162 2004/08/26 05:57:43 ovidiuf Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -5913,6 +5913,11 @@
<jvmarg value="${junit.jvm.options}"/>
<jvmarg value="-Djava.security.manager"/>
<jvmarg value="-Djava.security.policy==${build.resources}/client.policy"/>
+ <!-- - ->
+ <jvmarg value="-Xdebug"/>
+ <jvmarg value="-Xnoagent"/>
+ <jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=12341"/>
+ <!- - -->
<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"/>
@@ -6067,6 +6072,11 @@
timeout="${junit.timeout}"
jvm="${junit.jvm}">
+ <!-- - ->
+ <jvmarg value="-Xdebug"/>
+ <jvmarg value="-Xnoagent"/>
+ <jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=12341"/>
+ <!- - -->
<jvmarg value="${junit.jvm.options}"/>
<sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
<sysproperty key="build.testlog" value="${build.testlog}"/>
|