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/nocover.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'executor/nocover.h') diff --git a/executor/nocover.h b/executor/nocover.h index e23d69162..da0d0e2f7 100644 --- a/executor/nocover.h +++ b/executor/nocover.h @@ -26,12 +26,7 @@ static void cover_unprotect(cover_t* cov) { } -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