From 82f3c7881f572ba32d304fbff6bc29cab9625174 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 24 May 2020 14:15:33 +0200 Subject: tools/syz-check: don't check kvm on arm --- tools/syz-check/check.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tools') diff --git a/tools/syz-check/check.go b/tools/syz-check/check.go index 9c60615a0..aeab35cd0 100644 --- a/tools/syz-check/check.go +++ b/tools/syz-check/check.go @@ -150,6 +150,10 @@ func writeWarnings(OS string, narches int, warnings []Warn) error { } byFile := make(map[string][]Warn) for _, warn := range warnings { + // KVM is not supported on ARM completely. + if OS == "linux" && warn.arch == "arm" && strings.HasSuffix(warn.pos.File, "_kvm.txt") { + continue + } byFile[warn.pos.File] = append(byFile[warn.pos.File], warn) } for file, warns := range byFile { -- cgit mrf-deployment