aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/bisect
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2023-08-08 16:46:30 +0200
committerAleksandr Nogikh <nogikh@google.com>2023-08-08 14:57:25 +0000
commitd3ce511eabfaa0655df9f513d0f498e76f061948 (patch)
tree853433259d00112f4f6926c697d67be0fcc57960 /pkg/bisect
parent3c27dfcd35f9666a404f0e34390da6878f544caa (diff)
pkg/bisect: don't log verdicts twice
We incorrectly log crash verdicts twice, which makes bisection logs more confusing. Don't do that.
Diffstat (limited to 'pkg/bisect')
-rw-r--r--pkg/bisect/bisect.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/bisect/bisect.go b/pkg/bisect/bisect.go
index e1e251cd9..c9acb0cbb 100644
--- a/pkg/bisect/bisect.go
+++ b/pkg/bisect/bisect.go
@@ -743,7 +743,6 @@ func (env *env) processResults(current *vcs.Commit, results []instance.EnvTestRe
}
env.saveDebugFile(current.Hash, i, output)
case errors.As(res.Error, &crashError):
- verdicts = append(verdicts, fmt.Sprintf("crashed: %v", crashError))
output := crashError.Report.Report
if len(output) == 0 {
output = crashError.Report.Output