From 3a81775029176dd4c693542e6715b985fa7ade4d Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 3 May 2024 15:24:13 +0200 Subject: pkg/host: remove FileInfo Switch to flatrpc.FileInfoT instead. In preparation for pkg/host removal and to avoid circular dependencies in future changes. --- tools/syz-runtest/runtest.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/syz-runtest/runtest.go b/tools/syz-runtest/runtest.go index 82a1cc30e..1de8f6a54 100644 --- a/tools/syz-runtest/runtest.go +++ b/tools/syz-runtest/runtest.go @@ -18,6 +18,7 @@ import ( "sync/atomic" "time" + "github.com/google/syzkaller/pkg/flatrpc" "github.com/google/syzkaller/pkg/host" "github.com/google/syzkaller/pkg/instance" "github.com/google/syzkaller/pkg/mgrconfig" @@ -146,7 +147,7 @@ type Manager struct { vmPool *vm.Pool checker *vminfo.Checker checkFiles []string - checkFilesInfo []host.FileInfo + checkFilesInfo []flatrpc.FileInfoT checkProgs []rpctype.ExecutionRequest checkResults []rpctype.ExecutionResult needCheckResults int -- cgit mrf-deployment