Denis and Marc,
Thank you both!
This (below) worked for me. I'm finally getting reports!
Thank You,
Troy
Denis N. Antonioli wrote:
Hi Troy
On 8 sept. 06, at 03:12, Troy McGuire wrote:
<target name="formatResults" description="Formats the XML result
file using XSL">
<tstamp>
<format property="report.time" pattern="dd.MM.yyyy HH:mm"
locale="us" />
</tstamp>
<style
basedir="${webtest.resultpath}"
destdir="${webtest.resultpath}"
includes="${webtest.resultpath}/${webtest.resultfile}"
force="true"
extension=".html"
style="${resources.dir}/WebTestReport.xsl">
<param name="reporttime" expression="${report.time}"/>
<param name="title" expression="${ant.project.name}"/>
</style>
</target>
includes is, according to ant's manual, "comma- or space-separated
list of patterns of files that must be included."
Since you set includes to the qualified name of the result file, ant
won't be able to find a match!
Try to set includes="${webtest.resultfile}" as in:
<style
basedir="${webtest.resultpath}"
destdir="${webtest.resultpath}"
includes="${webtest.resultfile}"
force="true"
extension=".html"
style="${resources.dir}/WebTestReport.xsl">
<param name="reporttime" expression="${report.time}"/>
<param name="title" expression="${ant.project.name}"/>
</style>
Best
dna
--Dans le passé, il y avait plus de futur que maintenant.
- Le Chat
_______________________________________________
WebTest mailing list
[email protected]
http://lists.canoo.com/mailman/listinfo/webtest
.
_______________________________________________
WebTest mailing list
[email protected]
http://lists.canoo.com/mailman/listinfo/webtest