From d05abd413078a200fa436fa84644c16a4e645203 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Mon, 13 Jun 2022 00:34:20 +0100 Subject: [PATCH] junit: Include output in JUnit report for skipped and failed benchmarks --- junit/junit.go | 2 ++ testdata/036-report.xml | 6 +++--- testdata/110-report.xml | 6 +++--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/junit/junit.go b/junit/junit.go index 18e5993..d439315 100644 --- a/junit/junit.go +++ b/junit/junit.go @@ -241,10 +241,12 @@ func createTestcaseForBenchmark(pkgName string, bm gtr.Benchmark) Testcase { if bm.Result == gtr.Fail { tc.Failure = &Result{ Message: "Failed", + Data: formatOutput(bm.Output, 0), } } else if bm.Result == gtr.Skip { tc.Skipped = &Result{ Message: "Skipped", + Data: formatOutput(bm.Output, 0), } } else if len(bm.Output) > 0 { tc.SystemOut = &Output{Data: formatOutput(bm.Output, 0)} diff --git a/testdata/036-report.xml b/testdata/036-report.xml index 31b4d35..5ea9846 100644 --- a/testdata/036-report.xml +++ b/testdata/036-report.xml @@ -5,13 +5,13 @@ - + - + - + - + - + - +