From 90d67044dab68568e8f35bc14b68055dbd166eff Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 4 Jun 2024 12:55:40 +0200 Subject: executor: refactor coverage filter --- pkg/flatrpc/flatrpc.fbs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'pkg/flatrpc/flatrpc.fbs') diff --git a/pkg/flatrpc/flatrpc.fbs b/pkg/flatrpc/flatrpc.fbs index 7800d6779..78adc8ec5 100644 --- a/pkg/flatrpc/flatrpc.fbs +++ b/pkg/flatrpc/flatrpc.fbs @@ -54,7 +54,7 @@ table InfoRequestRaw { } table InfoReplyRaw { - cover_filter :[uint8]; + cover_filter :[uint64]; } table FileInfoRaw { @@ -134,7 +134,6 @@ enum ExecFlag : uint64 (bit_flags) { DedupCover, // deduplicate coverage in executor CollectComps, // collect KCOV comparisons Threaded, // use multiple threads to mitigate blocked syscalls - CoverFilter, // setup and use bitmap to do coverage filter } struct ExecOptsRaw { -- cgit mrf-deployment