as far as I know you have to invoke Jmeter multiple times each with a single
JMX if you want separate JTL files (you can use the Jmeter ant-contrib
foreach to accomplish this).
Or you could modify the jmeter ant task.
regards
deepak

On Mon, Aug 3, 2009 at 8:47 PM, BK1985 <[email protected]> wrote:

>
> 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]
>
>

Reply via email to