Issue
My C++ project uses googletest to produce XML results in the JUnit format for Jenkins. This is working well for pass/fail results and test durations.
Some of my tests measure code performance and assert that this exceeds some threshold. I would like to extend this to charting the performance data over successive builds. I use the googletest RecordProperty
method to log additional information in the XML:
<testcase name="MyTest" status="run" time="3.964" classname="MyTestSuite" PerformanceData="131" />
How can I configure Jenkins or one of its plugins to chart PerformanceData
(or an equivalent record) across successive builds?
Solution
You could try the Plot Plugin to plot the performance numbers.
Answered By - Captain Charmi
Answer Checked By - Senaida (JavaFixing Volunteer)