Hi,
I'm using the following approach to run multiple jmeter test plans with ant.
<jmeter
jmeterhome="${jmeter.home}"
resultlog="${testreports}/${test}.jtl">
<testplans dir="C:/DATA/TestPlans" includes="*.jmx"/>
<target name="report" depends="_message_xalan">
<xslt
classpathref="xslt.classpath"
force="true"
in="${testreports}/${test}.jtl"
out="${testreports}/${test}.html"
style="${styleSheetPath}">
</xslt>
</target>
(Ref: http://www.programmerplanet.org/pages/projects/jmeter-ant-task.php
http://www.programmerplanet.org/pages/projects/jmeter-ant-task.php )
As it is specified in the above approach, it writes test results of all the
the test plans to the same log ("${test}.jtl").
My requirement is to have separate .jtl & .html reports for each testplan.
Please let me know what are the possible ways of doing it.
Thanks,
BK
--
View this message in context:
http://www.nabble.com/Multiple-Test-Result-Reports---JMeter-with-Ant-tp24801907p24801907.html
Sent from the JMeter - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]