From a41cc17db0e5aeffb8fcb76a0452ac95c88a5c6c Mon Sep 17 00:00:00 2001 From: Patrick Meyer Date: Sat, 8 May 2021 21:02:02 +0200 Subject: pkg/host: enable coverage and all syscalls for darwin --- pkg/host/host_darwin.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'pkg') diff --git a/pkg/host/host_darwin.go b/pkg/host/host_darwin.go index 8eb01b600..c400d2895 100644 --- a/pkg/host/host_darwin.go +++ b/pkg/host/host_darwin.go @@ -8,5 +8,9 @@ import ( ) func isSupported(c *prog.Syscall, target *prog.Target, sandbox string) (bool, string) { - return false, "" + return true, "" +} + +func init() { + checkFeature[FeatureCoverage] = unconditionallyEnabled } -- cgit mrf-deployment