From 1b84ed358f51f36c0dd1f69ce45a158f82b5f140 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 15 Dec 2020 19:21:25 +0100 Subject: executor: don't use coverage edges for gvisor gvisor coverage is not a trace, so producing edges won't work. --- executor/executor_bsd.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'executor/executor_bsd.h') diff --git a/executor/executor_bsd.h b/executor/executor_bsd.h index 65d9fd925..fa31099fe 100644 --- a/executor/executor_bsd.h +++ b/executor/executor_bsd.h @@ -168,12 +168,7 @@ static void cover_collect(cover_t* cov) cov->size = *(uint64*)cov->data; } -static bool cover_check(uint32 pc) -{ - return true; -} - -static bool cover_check(uint64 pc) +static bool use_cover_edges(uint64 pc) { return true; } -- cgit mrf-deployment