|
From: Scott M S. <st...@us...> - 2003-02-09 05:54:31
|
User: starksm
Date: 03/02/08 21:54:30
Modified: . Tag: Branch_3_2 build.xml
Log:
Add the jbosstest.nodeploy property to the one-test junit test to allow
running a test without deploying the test jar
Revision Changes Path
No revision
No revision
1.165.2.38 +3 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.37
retrieving revision 1.165.2.38
diff -u -r1.165.2.37 -r1.165.2.38
--- build.xml 5 Feb 2003 05:17:27 -0000 1.165.2.37
+++ build.xml 9 Feb 2003 05:54:29 -0000 1.165.2.38
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.37 2003/02/05 05:17:27 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.38 2003/02/09 05:54:29 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -406,6 +406,7 @@
<property name="jbosstest.iterationcount" value="10"/>
<property name="jbosstest.threadcount" value="5"/>
<property name="jbosstest.beancount" value="5"/>
+ <property name="jbosstest.nodeploy" value="false"/>
<property name="junit.batchtest.todir" value="${build.reports}"/>
<property name="junit.jvm.options" value="-Ddummy"/>
<!-- Override JUnit Marathon defaults -->
@@ -4625,6 +4626,7 @@
<sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/>
<sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/>
<sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/>
+ <sysproperty key="jbosstest.nodeploy" value="${jbosstest.nodeploy}"/>
<sysproperty key="java.security.auth.login.config"
value="${build.resources}/security/auth.xml"/>
|