From 6ce93dd4258e133bb60b00fb7a0435b755be7bf4 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Fri, 2 Feb 2024 12:20:16 +0100 Subject: syz-manager: don't set up pprof endpoints for host fuzzing In this mode, all syz-fuzzers will be on the same network and will start competing with each other for binding to the same port. For now, we don't have the need to use pprof in the host fuzzer mode, so let's just disable it. --- vm/vm_test.go | 1 + 1 file changed, 1 insertion(+) (limited to 'vm/vm_test.go') diff --git a/vm/vm_test.go b/vm/vm_test.go index d01e97310..2a3f1171a 100644 --- a/vm/vm_test.go +++ b/vm/vm_test.go @@ -347,6 +347,7 @@ func testMonitorExecution(t *testing.T, test *Test) { Slowdown: 1, NoOutput: 5 * time.Second, }, + SysTarget: targets.Get(targets.Linux, targets.AMD64), }, Workdir: dir, Type: "test", -- cgit mrf-deployment