From fd37a550bbc804dfa7141052976b2057a04d274a Mon Sep 17 00:00:00 2001 From: Michael Tuexen Date: Sun, 20 Jan 2019 15:18:31 +0100 Subject: pkg/host: enable FeatureComparisons on FreeBSD Same as https://github.com/google/syzkaller/pull/952, just for FreeBSD. --- pkg/host/host_freebsd.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg') diff --git a/pkg/host/host_freebsd.go b/pkg/host/host_freebsd.go index 609db091c..a377c5280 100644 --- a/pkg/host/host_freebsd.go +++ b/pkg/host/host_freebsd.go @@ -13,5 +13,6 @@ func isSupported(c *prog.Syscall, target *prog.Target, sandbox string) (bool, st func init() { checkFeature[FeatureCoverage] = unconditionallyEnabled + checkFeature[FeatureComparisons] = unconditionallyEnabled checkFeature[FeatureNetworkInjection] = unconditionallyEnabled } -- cgit mrf-deployment