From a80ca54def962002ad5ebed54459dc1667de4385 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 18 Apr 2024 12:37:07 +0200 Subject: syz-manager: check revisions on the host Move revisions check to the host. Instead of sending host revisions to the VM, let the VM send own revisions to the host. This is a bit complicated by the fact that we still have the image testing procedure that also uses this code. For now keep it intact. --- tools/syz-runtest/runtest.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'tools') diff --git a/tools/syz-runtest/runtest.go b/tools/syz-runtest/runtest.go index b61dfdad8..3e410630b 100644 --- a/tools/syz-runtest/runtest.go +++ b/tools/syz-runtest/runtest.go @@ -221,8 +221,6 @@ func (mgr *Manager) finishRequest(name string, rep *report.Report) error { } func (mgr *Manager) Connect(a *rpctype.ConnectArgs, r *rpctype.ConnectRes) error { - r.GitRevision = prog.GitRevision - r.TargetRevision = mgr.cfg.Target.Revision r.AllSandboxes = true select { case <-mgr.checkFeaturesReady: -- cgit mrf-deployment