|
From: David J. <d_j...@us...> - 2002-12-03 18:50:09
|
User: d_jencks
Date: 02/12/03 10:50:08
Modified: . build.xml
Log:
Changed the mail report stylesheet to be set in a property, and provided a stylesheet that lists the errors/failures without a lot of details
Revision Changes Path
1.197 +5 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.196
retrieving revision 1.197
diff -u -r1.196 -r1.197
--- build.xml 1 Dec 2002 04:37:01 -0000 1.196
+++ build.xml 3 Dec 2002 18:50:07 -0000 1.197
@@ -10,7 +10,7 @@
<!ENTITY mqstress SYSTEM "./mqstress.xml">
]>
-<!-- $Id: build.xml,v 1.196 2002/12/01 04:37:01 stormy_sky Exp $ -->
+<!-- $Id: build.xml,v 1.197 2002/12/03 18:50:07 d_jencks Exp $ -->
<!--+======================================================================+-->
<!--| JBoss (The OpenSource J2EE WebOS) Build File |-->
@@ -4142,6 +4142,9 @@
-->
<target name="tests-report-text" depends="tests-report-html">
+
+ <property name="summary.stylesheet" value="summary1b.xsl"/>
+
<mkdir dir="${build.reports}/text"/>
<tstamp>
@@ -4151,7 +4154,7 @@
<style basedir="${build.reports}"
destdir="${build.reports}/text"
extension=".txt"
- style="${build.stylesheets}/summary1a.xsl"
+ style="${build.stylesheets}/${summary.stylesheet}"
includes="TESTS-TestSuites.xml">
<param name="thedate" expression="${TIMENOW}"/>
<param name="java_version" expression="${java.version}"/>
|