From b1f7eb0c307c7f098b07b5cc4d6012b269fe8b3b Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 15 Jan 2016 20:33:09 +0100 Subject: vm: reformat --- vm/vm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/vm.go b/vm/vm.go index 0692b6b2f..39f5989da 100644 --- a/vm/vm.go +++ b/vm/vm.go @@ -61,7 +61,7 @@ func Create(typ string, cfg *Config) (Instance, error) { } var ( - CrashRe = regexp.MustCompile("Kernel panic[^\r\n]*|BUG:[^\r\n]*|kernel BUG[^\r\n]*|WARNING:[^\r\n]*|" + + CrashRe = regexp.MustCompile("Kernel panic[^\r\n]*|BUG:[^\r\n]*|kernel BUG[^\r\n]*|WARNING:[^\r\n]*|" + "INFO:[^\r\n]*|unable to handle|Unable to handle kernel[^\r\n]*|general protection fault|UBSAN:[^\r\n]*|" + "unreferenced object[^\r\n]*") TimeoutErr = errors.New("timeout") -- cgit mrf-deployment