diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-03-12 14:19:57 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-03-17 18:06:44 +0100 |
| commit | b3ed01507f8e1f0feb0d5068fdafa3cf7de14501 (patch) | |
| tree | 6d0488e9cdf1476b2cbd83239ebac92b0a38c895 /tools/syz-bisect | |
| parent | 41c6dd359b0c5ae19c8e623f6a5abd63e18c6e08 (diff) | |
pkg/bisect: various improvements
A bunch of improvements after more wide bisection testing.
Improve logging.
Support returning several commits for inconclusive bisection.
Return Report with the final crash.
Remove code that was moved to pkg/vcs.
Update #501
Diffstat (limited to 'tools/syz-bisect')
| -rw-r--r-- | tools/syz-bisect/bisect.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syz-bisect/bisect.go b/tools/syz-bisect/bisect.go index eaae1f9e7..88adeef34 100644 --- a/tools/syz-bisect/bisect.go +++ b/tools/syz-bisect/bisect.go @@ -78,7 +78,7 @@ func main() { loadFile("kernel.config", &cfg.Kernel.Config) loadFile("repro.syz", &cfg.Repro.Syz) loadFile("repro.opts", &cfg.Repro.Opts) - if _, err := bisect.Run(cfg); err != nil { + if _, _, err := bisect.Run(cfg); err != nil { fmt.Fprintf(os.Stderr, "bisection failed: %v\n", err) os.Exit(1) } |
