aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2019-11-15 11:42:18 +0100
committerDmitry Vyukov <dvyukov@google.com>2019-11-16 09:58:54 +0100
commit587cec15e23ecafc9b00f8ae775a98d0e4803997 (patch)
treec4911f94c12a1cce7c02ab3769fce8ae6b497bb9 /tools
parenta129861adb55f3c438eaee27302e76c099aa363d (diff)
pkg/host: add Features.Supported
To reduce diff in future changes. Currently no-op.
Diffstat (limited to 'tools')
-rw-r--r--tools/syz-execprog/execprog.go2
-rw-r--r--tools/syz-runtest/runtest.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/syz-execprog/execprog.go b/tools/syz-execprog/execprog.go
index 5aaf81d2f..38412edd4 100644
--- a/tools/syz-execprog/execprog.go
+++ b/tools/syz-execprog/execprog.go
@@ -69,7 +69,7 @@ func main() {
log.Fatalf("%v", err)
}
if *flagOutput {
- for _, feat := range features {
+ for _, feat := range features.Supported() {
log.Logf(0, "%-24v: %v", feat.Name, feat.Reason)
}
}
diff --git a/tools/syz-runtest/runtest.go b/tools/syz-runtest/runtest.go
index 538646a2b..a45ac915f 100644
--- a/tools/syz-runtest/runtest.go
+++ b/tools/syz-runtest/runtest.go
@@ -110,7 +110,7 @@ func main() {
}
enabledCalls[sandbox] = calls
}
- for _, feat := range mgr.checkResult.Features {
+ for _, feat := range mgr.checkResult.Features.Supported() {
fmt.Printf("%-24v: %v\n", feat.Name, feat.Reason)
}
for sandbox, calls := range enabledCalls {