I am generating Jmeter output JTL file in XML format using below command:
sh jmeter.sh -Jjmeter.save.saveservice.output_format=xml -n -t /User/sudhir.tataraju/Desktop/Automation/test.jmx -l /root/.jenkins/workspace/JmeterTest/Output_test.xml
Same Output_test.xml
file am using for Jenkins job plugin "Publish JUnit test result report"
But report is not generating throwing error in Console Output log of jmeter job as
Recording test results
None of the test reports contained any result
I found issue is because of Output_test.xml format, seems the plugin is only for XML formatted JTL file generated by ANT application.
If I use the XML formatted JTL file generated by ANT application then my plugin working showing the failed test cases report.
Please suggest either:
any way to convert my non-supported XML to ANT-formatted XML that "Publish JUnit test result report" plugin supports; or
an alternate plugin that supports normal XML generated by my above-mentioned jmeter command (which should display's similar output highlighting all failed test cases and its reasons without need of ANT application).