aboutsummaryrefslogtreecommitdiffstats
path: root/tools/syz-repro
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2016-12-19 17:39:03 +0100
committerDmitry Vyukov <dvyukov@google.com>2016-12-19 17:39:03 +0100
commit80b6c954f8daa8d9910698be9eca6d97284a75a0 (patch)
treea367f64eeee88fe93a49d98f5a3bbba60df9de85 /tools/syz-repro
parenta074da17a4055352fea94afbd5a15c53d0946653 (diff)
manager: add ability to ignore bugs
Add new config parameter "ignores" which contains list of regexp expressions. If one of the expressions is matched against oops line, crash report is not saved and VM is not restarted.
Diffstat (limited to 'tools/syz-repro')
-rw-r--r--tools/syz-repro/repro.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syz-repro/repro.go b/tools/syz-repro/repro.go
index fb9ad0ef6..e2e2f6985 100644
--- a/tools/syz-repro/repro.go
+++ b/tools/syz-repro/repro.go
@@ -30,7 +30,7 @@ var (
func main() {
os.Args = append(append([]string{}, os.Args[0], "-v=10"), os.Args[1:]...)
flag.Parse()
- cfg, _, _, err := config.Parse(*flagConfig)
+ cfg, _, err := config.Parse(*flagConfig)
if err != nil {
Fatalf("%v", err)
}