diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-08-08 16:46:30 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2023-08-08 14:57:25 +0000 |
| commit | d3ce511eabfaa0655df9f513d0f498e76f061948 (patch) | |
| tree | 853433259d00112f4f6926c697d67be0fcc57960 | |
| parent | 3c27dfcd35f9666a404f0e34390da6878f544caa (diff) | |
pkg/bisect: don't log verdicts twice
We incorrectly log crash verdicts twice, which makes bisection logs more
confusing. Don't do that.
| -rw-r--r-- | pkg/bisect/bisect.go | 1 |
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 |
