From 43c784a63b4cb3d09c78f8942504ebd3918ecf34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Fri, 11 Mar 2022 23:18:52 +0000 Subject: [PATCH] Set non-zero exit code for build/run errors when using -set-exit-code --- go-junit-report.go | 2 +- pkg/gtr/gtr.go | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/go-junit-report.go b/go-junit-report.go index 3239387..79bca64 100644 --- a/go-junit-report.go +++ b/go-junit-report.go @@ -102,7 +102,7 @@ func main() { } fmt.Fprintf(out, "\n") - if *setExitCode && report.HasFailures() { + if *setExitCode && !report.IsSuccessful() { os.Exit(1) } } diff --git a/pkg/gtr/gtr.go b/pkg/gtr/gtr.go index cb06ddf..e5e4ed6 100644 --- a/pkg/gtr/gtr.go +++ b/pkg/gtr/gtr.go @@ -19,15 +19,18 @@ type Report struct { Packages []Package } -func (r *Report) HasFailures() bool { +func (r *Report) IsSuccessful() bool { for _, pkg := range r.Packages { + if pkg.BuildError.Name != "" || pkg.RunError.Name != "" { + return false + } for _, t := range pkg.Tests { - if t.Result == Fail { - return true + if t.Result != Pass && t.Result != Skip { + return false } } } - return false + return true } type Package struct {