diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-12-27 14:28:08 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-12-27 14:28:08 +0100 |
| commit | 9dd89763a119bc50d28fe0b901cd56a4bd3ea39d (patch) | |
| tree | cdcfd3f10a0c5a1d724904723d693bbf8ee8e6d1 | |
| parent | a113b8e4d7abff262f2de76983e0d372cf62d122 (diff) | |
syz-ci: don't mark build errors as corrupted
Otherwise they get merged with other corrupted reports.
| -rw-r--r-- | syz-ci/manager.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-ci/manager.go b/syz-ci/manager.go index d6a47d30c..1f4b01b5c 100644 --- a/syz-ci/manager.go +++ b/syz-ci/manager.go @@ -396,7 +396,7 @@ func (mgr *Manager) reportBuildError(rep *report.Report, info *BuildInfo, imageD Build: *build, Crash: dashapi.Crash{ Title: rep.Title, - Corrupted: rep.Corrupted, + Corrupted: false, // Otherwise they get merged with other corrupted reports. Maintainers: rep.Maintainers, Log: rep.Output, Report: rep.Report, |
