diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-05-03 15:24:13 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-05-03 15:12:45 +0000 |
| commit | 3a81775029176dd4c693542e6715b985fa7ade4d (patch) | |
| tree | 8b6558acff0249792c4be3b26a018f70dbd4535d /tools | |
| parent | 3ff099b95730725adf7e5a1fae1a1463a3647a3d (diff) | |
pkg/host: remove FileInfo
Switch to flatrpc.FileInfoT instead.
In preparation for pkg/host removal and to avoid
circular dependencies in future changes.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/syz-runtest/runtest.go | 3 |
1 files changed, 2 insertions, 1 deletions
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 |
