|
From: Thomas D. <tdi...@us...> - 2004-03-13 20:06:01
|
User: tdiesler
Date: 04/03/13 11:57:10
Modified: . build.xml
Log:
+ make 'one-test' dependent on init, just like 'test'
Revision Changes Path
1.347 +4 -3 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.346
retrieving revision 1.347
diff -u -r1.346 -r1.347
--- build.xml 10 Mar 2004 09:35:35 -0000 1.346
+++ build.xml 13 Mar 2004 19:57:06 -0000 1.347
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.346 2004/03/10 09:35:35 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.347 2004/03/13 19:57:06 tdiesler Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -6360,7 +6360,7 @@
-->
<target name="test" depends="init" if="test"
- description="Execute a single test.">
+ description="Execute all tests in the given test directory.">
<mkdir dir="${build.reports}"/>
<mkdir dir="${build.testlog}"/>
<!-- Remove the test.log so each run has a fresh log -->
@@ -6517,7 +6517,7 @@
| Here you specify the testcase class, not the directory
-->
- <target name="one-test" depends="maybejars" if="test"
+ <target name="one-test" depends="init" if="test"
description="Execute a single test.">
<mkdir dir="${build.reports}"/>
<mkdir dir="${build.testlog}"/>
@@ -6532,6 +6532,7 @@
jvm="${junit.jvm}">
<jvmarg value="${junit.jvm.options}"/>
+ <!--jvmarg line="-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=n,address=5005,suspend=y"/-->
<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"/>
|