From 80b6c954f8daa8d9910698be9eca6d97284a75a0 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 19 Dec 2016 17:39:03 +0100 Subject: 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. --- tools/syz-repro/repro.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/syz-repro') 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) } -- cgit mrf-deployment