aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-05-24 14:15:33 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-05-25 18:06:29 +0200
commit82f3c7881f572ba32d304fbff6bc29cab9625174 (patch)
treecd5187b67683ca228bf5c5452cbe4de1af324355 /tools
parentfcec29826eebbf42fad77832650bd2a809784b35 (diff)
tools/syz-check: don't check kvm on arm
Diffstat (limited to 'tools')
-rw-r--r--tools/syz-check/check.go4
1 files changed, 4 insertions, 0 deletions
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 {