From 66fcb0a84fcd55ad8e1444cdd0bc0ad6592f7329 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 1 Jul 2024 14:26:05 +0200 Subject: pkg/fuzzer: try to triage on different VMs Distribute triage requests to different VMs. --- pkg/flatrpc/flatrpc.fbs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkg/flatrpc/flatrpc.fbs') diff --git a/pkg/flatrpc/flatrpc.fbs b/pkg/flatrpc/flatrpc.fbs index bd8b023d9..c7516e624 100644 --- a/pkg/flatrpc/flatrpc.fbs +++ b/pkg/flatrpc/flatrpc.fbs @@ -163,6 +163,8 @@ struct ExecOptsRaw { // Request to execute a test program. table ExecRequestRaw { id :int64; + // Bitmask of procs to avoid when executing this request, if possible. + avoid :uint64; prog_data :[uint8]; exec_opts :ExecOptsRaw; flags :RequestFlag; @@ -239,6 +241,7 @@ table ProgInfoRaw { // Result of executing a test program. table ExecResultRaw { id :int64; + proc :int32; output :[uint8]; error :string; info :ProgInfoRaw; -- cgit mrf-deployment