diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-07-01 14:26:05 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-08-02 13:16:51 +0000 |
| commit | 66fcb0a84fcd55ad8e1444cdd0bc0ad6592f7329 (patch) | |
| tree | 998e52d5569938e0251da1eb7c54c3746186b488 /pkg/flatrpc/flatrpc.fbs | |
| parent | 1e9c4cf3ae82ef82220af312606fffe65e124563 (diff) | |
pkg/fuzzer: try to triage on different VMs
Distribute triage requests to different VMs.
Diffstat (limited to 'pkg/flatrpc/flatrpc.fbs')
| -rw-r--r-- | pkg/flatrpc/flatrpc.fbs | 3 |
1 files changed, 3 insertions, 0 deletions
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; |
