aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vm.go
diff options
context:
space:
mode:
authorRadoslav Gerganov <rgerganov@vmware.com>2020-09-25 02:04:09 -0700
committerDmitry Vyukov <dvyukov@google.com>2020-10-10 11:58:52 +0200
commit4a77ae0bdc5cd75ebe88ce7c896aae6bbf457a29 (patch)
treef6e97682c59e708acc25fa4f8e9f66602b2b8037 /vm/vm.go
parentb74c49a6af84e6ab50018024e8862263b1e0bd6d (diff)
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).
Diffstat (limited to 'vm/vm.go')
-rw-r--r--vm/vm.go1
1 files changed, 1 insertions, 0 deletions
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 {