aboutsummaryrefslogtreecommitdiffstats
path: root/tools/syz-execprog
diff options
context:
space:
mode:
authorPimyn Girgis <bemenboshra2001@gmail.com>2024-08-06 14:10:45 +0000
committerDmitry Vyukov <dvyukov@google.com>2024-08-12 09:22:32 +0000
commit421e1cbedb47cb499201512defc2baf79d7b87f7 (patch)
treed3575138e30c98c96e6ecc180b4b06fdcd71fa4b /tools/syz-execprog
parent1fef415f27727712346c8e7ad9c945e74d217b1b (diff)
pkg/mgrconfig, prog, tools: allow automatically generated or manually written descriptions or both
Add "Auto" type and allow to choose descriptions mode in configurations. Defaults to using manual only.
Diffstat (limited to 'tools/syz-execprog')
-rw-r--r--tools/syz-execprog/execprog.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syz-execprog/execprog.go b/tools/syz-execprog/execprog.go
index e86d09053..550b3c114 100644
--- a/tools/syz-execprog/execprog.go
+++ b/tools/syz-execprog/execprog.go
@@ -109,7 +109,7 @@ func main() {
if *flagSyscalls == "" {
syscallList = nil
}
- requestedSyscalls, err = mgrconfig.ParseEnabledSyscalls(target, syscallList, nil)
+ requestedSyscalls, err = mgrconfig.ParseEnabledSyscalls(target, syscallList, nil, mgrconfig.AnyDescriptions)
if err != nil {
tool.Failf("failed to parse enabled syscalls: %v", err)
}