diff options
| author | Patrick Meyer <meyerpatrick@google.com> | 2021-05-08 21:02:02 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-05-20 13:29:54 +0200 |
| commit | a41cc17db0e5aeffb8fcb76a0452ac95c88a5c6c (patch) | |
| tree | 5711554fd41ac541f6cf5b221fec24ea2bc3b59e /pkg/host | |
| parent | 918efccedbfe2e5979d4f71ae77ce4dc660b4b5f (diff) | |
pkg/host: enable coverage and all syscalls for darwin
Diffstat (limited to 'pkg/host')
| -rw-r--r-- | pkg/host/host_darwin.go | 6 |
1 files changed, 5 insertions, 1 deletions
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 } |
