From b95e18cd5c1ad330fcf716716eb2633e1135a1e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Tue, 7 Jun 2022 00:23:29 +0100 Subject: [PATCH] gtr: Add ID fields to Test, Benchmark and Error structs This can optionally be used to uniquely individual tests, benchmarks or errors. --- gtr/gtr.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtr/gtr.go b/gtr/gtr.go index dc0a404..b410c98 100644 --- a/gtr/gtr.go +++ b/gtr/gtr.go @@ -82,6 +82,7 @@ func (p *Package) SetProperty(key, value string) { // Test contains the results of a single test. type Test struct { + ID int Name string Duration time.Duration Result Result @@ -91,6 +92,7 @@ type Test struct { // Benchmark contains the results of a single benchmark. type Benchmark struct { + ID int Name string Result Result Output []string @@ -103,6 +105,7 @@ type Benchmark struct { // Error contains details of a build or runtime error. type Error struct { + ID int Name string Duration time.Duration Cause string