diff --git a/pkg/junit/junit.go b/pkg/junit/junit.go index 69b45ad..c521075 100644 --- a/pkg/junit/junit.go +++ b/pkg/junit/junit.go @@ -82,8 +82,8 @@ type Testcase struct { Classname string `xml:"classname,attr"` // optional attributes - Time string `xml:"time,attr"` // duration in seconds - Status string `xml:"status,attr"` + Time string `xml:"time,attr,omitempty"` // duration in seconds + Status string `xml:"status,attr,omitempty"` Skipped *Result `xml:"skipped,omitempty"` Error *Result `xml:"error,omitempty"` @@ -110,3 +110,9 @@ type Result struct { func FormatDuration(d time.Duration) string { return fmt.Sprintf("%.3f", d.Seconds()) } + +// FormatBenchmarkTime returns the JUnit string representation of the given +// benchmark time. +func FormatBenchmarkTime(d time.Duration) string { + return fmt.Sprintf("%.9f", d.Seconds()) +}