mirror of
https://github.com/reactos/syzkaller.git
synced 2025-02-26 06:35:31 +00:00
syz-manager: log when a crash report is corrupted
This commit is contained in:
parent
aa258367d3
commit
63f4cf6fff
@ -613,7 +613,11 @@ func (mgr *Manager) emailCrash(crash *Crash) {
|
||||
}
|
||||
|
||||
func (mgr *Manager) saveCrash(crash *Crash) bool {
|
||||
Logf(0, "vm-%v: crash: %v", crash.vmIndex, crash.Title)
|
||||
corrupted := ""
|
||||
if crash.Corrupted {
|
||||
corrupted = " [corrupted]"
|
||||
}
|
||||
Logf(0, "vm-%v: crash: %v%v", crash.vmIndex, crash.Title, corrupted)
|
||||
if err := mgr.getReporter().Symbolize(crash.Report); err != nil {
|
||||
Logf(0, "failed to symbolize report: %v", err)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user