mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-16 10:42:25 +01:00
Add measurement samples to xml reporter
This commit is contained in:
parent
fa5a53df17
commit
f2dc9dbb2d
@ -250,6 +250,12 @@ namespace Catch {
|
|||||||
.writeAttribute("lowSevere"_sr, benchmarkStats.outliers.low_severe)
|
.writeAttribute("lowSevere"_sr, benchmarkStats.outliers.low_severe)
|
||||||
.writeAttribute("highMild"_sr, benchmarkStats.outliers.high_mild)
|
.writeAttribute("highMild"_sr, benchmarkStats.outliers.high_mild)
|
||||||
.writeAttribute("highSevere"_sr, benchmarkStats.outliers.high_severe);
|
.writeAttribute("highSevere"_sr, benchmarkStats.outliers.high_severe);
|
||||||
|
auto samples = m_xml.scopedElement("samples");
|
||||||
|
for (auto const& sample : benchmarkStats.samples) {
|
||||||
|
m_xml.startElement("sample", XmlFormatting::Indent)
|
||||||
|
.writeText(std::to_string(sample.count()), XmlFormatting::None)
|
||||||
|
.endElement(XmlFormatting::Newline);
|
||||||
|
}
|
||||||
m_xml.endElement();
|
m_xml.endElement();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user