diff options
Diffstat (limited to 'pkg/runtest')
| -rw-r--r-- | pkg/runtest/run.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/runtest/run.go b/pkg/runtest/run.go index eb1d0b131..1ea5c7a7e 100644 --- a/pkg/runtest/run.go +++ b/pkg/runtest/run.go @@ -26,6 +26,7 @@ import ( "github.com/google/syzkaller/pkg/csource" "github.com/google/syzkaller/pkg/flatrpc" "github.com/google/syzkaller/pkg/fuzzer/queue" + "github.com/google/syzkaller/pkg/manager" "github.com/google/syzkaller/prog" "github.com/google/syzkaller/sys/targets" ) @@ -310,7 +311,7 @@ func parseProg(target *prog.Target, dir, filename string, requires map[string]bo if !checkArch(properties, target.Arch) || !match(properties, requires) { return nil, nil, nil, nil } - p, err := target.Deserialize(data, prog.Strict) + p, err := manager.ParseSeedStrict(target, data) if err != nil { return nil, nil, nil, fmt.Errorf("failed to deserialize %v: %w", filename, err) } |
