Skip to content

Commit

Permalink
tools/syz_covermerger.go: print dashapi error details
Browse files Browse the repository at this point in the history
  • Loading branch information
tarasmadan committed Jul 24, 2024
1 parent 499b5b4 commit 7aa0abe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/syz-covermerger/syz_covermerger.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ func main() {
)
}
if *flagToDashAPI != "" {
saveCoverage(*flagToDashAPI, &dashapi.MergedCoverage{})
if err := saveCoverage(*flagToDashAPI, &dashapi.MergedCoverage{}); err != nil {
log.Panicf("failed to saveCoverage: %v", err)
}
}
}

Expand Down

0 comments on commit 7aa0abe

Please sign in to comment.