|
From: Chris K. <ki...@us...> - 2003-04-09 11:04:43
|
User: kimptoc
Date: 03/04/09 04:04:40
Modified: . build.xml
Log:
make the test summary report params more amenable to being overridden
Revision Changes Path
1.234 +11 -12 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -r1.233 -r1.234
--- build.xml 2 Apr 2003 03:29:12 -0000 1.233
+++ build.xml 9 Apr 2003 11:04:39 -0000 1.234
@@ -10,7 +10,7 @@
<!ENTITY mqstress SYSTEM "./mqstress.xml">
]>
-<!-- $Id: build.xml,v 1.233 2003/04/02 03:29:12 patriot1burke Exp $ -->
+<!-- $Id: build.xml,v 1.234 2003/04/09 11:04:39 kimptoc Exp $ -->
<!--+======================================================================+-->
<!--| JBoss (The OpenSource J2EE WebOS) Build File |-->
@@ -50,9 +50,6 @@
<target name="init" depends="_default:init">
<!-- Add module specific elements here. -->
- <tstamp>
- <format property="TIMENOW" pattern="yyyy-MM-dd.HH-mm" timezone="GMT"/>
- </tstamp>
<echo message="${TIMENOW}" file="run.tstamp" />
<echo message="Set timestamp to: ${TIMENOW}" />
</target>
@@ -67,6 +64,10 @@
<target name="configure" unless="configure.disable">
+ <tstamp>
+ <format property="TIMENOW" pattern="yyyy-MM-dd.HH-mm" timezone="GMT"/>
+ </tstamp>
+
<!--+================================+-->
<!--| Library & Module Dependencies. |-->
<!--+================================+-->
@@ -165,6 +166,10 @@
<property name="default.test.create-table" value="true"/>
<property name="default.test.remove-table" value="true"/>
+ <!-- test report defaults -->
+ <property name="builduid" value="${TIMENOW}"/>
+ <property name="results_web" value="http://users.jboss.org/~starksm/HEAD"/>
+
<!-- Classpath to build and run the tests -->
<path id="tests.classpath">
@@ -4657,12 +4662,6 @@
</junitreport>
</target>
- <!--
- | this currently spews logs of VariableReference crap, so it is turned
- | off by default. Once this is fixed, it should be built after
- | tests-report-html
- -->
-
<target name="tests-report-text" depends="tests-report-html">
<property name="summary.stylesheet" value="summary1b.xsl"/>
@@ -4690,8 +4689,8 @@
<param name="os_name" expression="${os.name}"/>
<param name="os_arch" expression="${os.arch}"/>
<param name="os_version" expression="${os.version}"/>
- <param name="builduid" expression="${TIMENOW}"/>
- <param name="results_web" expression="http://users.jboss.org/~starksm/HEAD"/>
+ <param name="builduid" expression="${builduid}"/>
+ <param name="results_web" expression="${results_web}"/>
</style>
</target>
|