From a54c2b7b920e69215f16cd02bb95957902ab1541 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 11 Sep 2018 15:33:45 +0200 Subject: syz-ci: de-hardcode list of VMs that support overcommit We currently have this list in multiple places (somewhat diverged). Specify this "overcommit" property in VM implementations. In particular, we also want to allow overcommit for "vmm" type. Update #712 --- vm/gvisor/gvisor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm/gvisor') diff --git a/vm/gvisor/gvisor.go b/vm/gvisor/gvisor.go index f594efcf4..94081052a 100644 --- a/vm/gvisor/gvisor.go +++ b/vm/gvisor/gvisor.go @@ -23,7 +23,7 @@ import ( ) func init() { - vmimpl.Register("gvisor", ctor) + vmimpl.Register("gvisor", ctor, true) } type Config struct { -- cgit mrf-deployment