From 4a77ae0bdc5cd75ebe88ce7c896aae6bbf457a29 Mon Sep 17 00:00:00 2001 From: Radoslav Gerganov Date: Fri, 25 Sep 2020 02:04:09 -0700 Subject: vm: implement the VM interface for VMware Workstation Use the "vmrun" utility to manage Workstation VMs. The syzkaller manager creates temporary VMs (linked clones) from a base image, gets their IP address and uses ssh to deploy and run programs (similar to the isolated mode). --- vm/vm.go | 1 + 1 file changed, 1 insertion(+) (limited to 'vm/vm.go') diff --git a/vm/vm.go b/vm/vm.go index 0bd13a951..422317b7d 100644 --- a/vm/vm.go +++ b/vm/vm.go @@ -30,6 +30,7 @@ import ( _ "github.com/google/syzkaller/vm/odroid" _ "github.com/google/syzkaller/vm/qemu" _ "github.com/google/syzkaller/vm/vmm" + _ "github.com/google/syzkaller/vm/vmware" ) type Pool struct { -- cgit mrf-deployment